Merge pull request #3747 from SpyrosRoum/patch-1

Fix tutorial bridge room
This commit is contained in:
Griatch 2025-03-21 22:32:13 +01:00 committed by GitHub
commit e96efb4f3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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))