Skip to content

Commit

Permalink
Fix missiing return
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jan 11, 2024
1 parent 0e53316 commit a20ebf2
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 @@ -285,7 +285,7 @@ def terran_respond_to_colony_infestations(self, state: CollectionState) -> bool:
)

def engine_of_destruction_requirement(self, state: CollectionState):
self.marine_medic_upgrade(state) \
return self.marine_medic_upgrade(state) \
and (
self.terran_competent_anti_air(state)
and self.terran_common_unit(state) or state.has(ItemNames.WRAITH, self.player)
Expand Down

0 comments on commit a20ebf2

Please sign in to comment.