Skip to content

Commit

Permalink
Fix a logic hole for Into the Void
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jan 17, 2024
1 parent 55b4ac1 commit ce86f0f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions worlds/sc2/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,10 +593,12 @@ def into_the_void_requirement(self, state: CollectionState) -> bool:
or (
self.take_over_ai_allies
and (
state.has(ItemNames.BATTLECRUISER, self.player)
state.has(ItemNames.BATTLECRUISER, self.player)
or (
state.has(ItemNames.ULTRALISK, self.player)
and self.protoss_competent_anti_air(state)
)
)
or (state.has(ItemNames.ULTRALISK, self.player)
and self.protoss_competent_anti_air(state))
)

def essence_of_eternity_requirement(self, state: CollectionState) -> bool:
Expand Down

0 comments on commit ce86f0f

Please sign in to comment.