diff --git a/evennia/contrib/tutorials/tutorial_world/rooms.py b/evennia/contrib/tutorials/tutorial_world/rooms.py index 4e346c4bd2..346ffa7d33 100644 --- a/evennia/contrib/tutorials/tutorial_world/rooms.py +++ b/evennia/contrib/tutorials/tutorial_world/rooms.py @@ -783,7 +783,7 @@ class BridgeRoom(WeatherRoom): This is called at irregular intervals and makes the passage over the bridge a little more interesting. """ - if random.random() < 80: + if random.random() < 0.8: # send a message most of the time self.msg_contents("|w%s|n" % random.choice(BRIDGE_WEATHER))