From 516a52c041980174da3069be3541db4d5d87b98d Mon Sep 17 00:00:00 2001 From: N00byKing Date: Fri, 16 Sep 2022 20:58:28 +0200 Subject: [PATCH] sm64ex: Fix WDW 1Up Block Logic --- worlds/sm64ex/Rules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/worlds/sm64ex/Rules.py b/worlds/sm64ex/Rules.py index eae98685..24622062 100644 --- a/worlds/sm64ex/Rules.py +++ b/worlds/sm64ex/Rules.py @@ -86,6 +86,7 @@ def set_rules(world, player: int, area_connections): # which would make it impossible to reach downtown area without the cannon. add_rule(world.get_location("WDW: Quick Race Through Downtown!", player), lambda state: state.has("Cannon Unlock WDW", player)) add_rule(world.get_location("WDW: Go to Town for Red Coins", player), lambda state: state.has("Cannon Unlock WDW", player)) + add_rule(world.get_location("WDW: 1Up Block in Downtown", player), lambda state: state.has("Cannon Unlock WDW", player)) if world.StrictCapRequirements[player]: add_rule(world.get_location("BoB: Mario Wings to the Sky", player), lambda state: state.has("Wing Cap", player))