Skip to content

Commit

Permalink
Fix brackets in escape logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jan 14, 2024
1 parent 260f281 commit 0ceb87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/sc2/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down

0 comments on commit 0ceb87b

Please sign in to comment.