13 lines
294 B
Python
13 lines
294 B
Python
from server.nightr.util import Context, Prediction
|
|
|
|
|
|
def probability(context: Context) -> Prediction:
|
|
"""
|
|
How many players are currently online on Steam.
|
|
"""
|
|
p = Prediction()
|
|
p.probability = 0.2
|
|
p.reasons.append("CSGO has more than 10.000 online players")
|
|
|
|
return p
|