From 2cd3397970bb82fed124777eb9b84edc9ac8f4b7 Mon Sep 17 00:00:00 2001 From: Kevin Rode Date: Sun, 3 Jan 2021 22:25:46 -0500 Subject: [PATCH] or should be used not and --- games.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games.py b/games.py index 62098b8..74ecad7 100644 --- a/games.py +++ b/games.py @@ -210,7 +210,7 @@ class game(object): if self.weather.name == "Crowstorm": randomchance = random.gauss(0,1) print(randomchance) - if randomchance < -1.5 and randomchance > 1.5: + if randomchance < -1.5 or randomchance > 1.5: outcome["ishit"] = False fc_flag = False outcome["text"] = appearance_outcomes.crows