From 0ceb87b5fb039d25b53b61838e3da85791689b65 Mon Sep 17 00:00:00 2001 From: Ziktofel Date: Sun, 14 Jan 2024 02:37:54 +0100 Subject: [PATCH] Fix brackets in escape logic --- worlds/sc2/Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/sc2/Rules.py b/worlds/sc2/Rules.py index 2ec136235b45..e41eccf2d518 100644 --- a/worlds/sc2/Rules.py +++ b/worlds/sc2/Rules.py @@ -678,7 +678,7 @@ def the_escape_stuff_granted(self) -> bool: def the_escape_first_stage_requirement(self, state: CollectionState) -> bool: return self.the_escape_stuff_granted() \ - or ((self.nova_ranged_weapon(state) and self.nova_full_stealth(state)) or self.nova_heal(state)) + or (self.nova_ranged_weapon(state) and (self.nova_full_stealth(state) or self.nova_heal(state))) def the_escape_requirement(self, state: CollectionState) -> bool: return self.the_escape_first_stage_requirement(state) \