From a20ebf2f3fd4428a4d0315cb38fccefdb9fc801c Mon Sep 17 00:00:00 2001 From: Ziktofel Date: Thu, 11 Jan 2024 22:36:01 +0100 Subject: [PATCH] Fix missiing return --- 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 ae879be8180a..30cd17412532 100644 --- a/worlds/sc2/Rules.py +++ b/worlds/sc2/Rules.py @@ -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)