diff --git a/worlds/sc2/Rules.py b/worlds/sc2/Rules.py index bdfb671d7d26..694cccaab9ee 100644 --- a/worlds/sc2/Rules.py +++ b/worlds/sc2/Rules.py @@ -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: