From c93ae2e7a35616508ffd4527d46cd64c8f0d6e70 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Thu, 1 Apr 2021 02:26:26 -0400 Subject: [PATCH] slightly increased proc rate of mist --- weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather.py b/weather.py index e94d9e5..03796ec 100644 --- a/weather.py +++ b/weather.py @@ -446,7 +446,7 @@ class SummerMist(Weather): def activate(self, game, result): if result["outcome"] in [appearance_outcomes.flyout, appearance_outcomes.groundout, appearance_outcomes.sacrifice]: roll = random.random() - if roll < .3: #get lost + if roll < .4: #get lost result["mist"] = True self.text = f" {result['batter'].name} gets lost in the mist on the way back to the dugout." if self.missing_players[result["offense_team"].name] is not None: