From efe02e259189cfc5642fb02f931856b0e52738cb Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Fri, 17 Sep 2021 10:53:55 -0500 Subject: [PATCH] allow swamp BK in first chest in hybrid major glitches --- worlds/alttp/Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/alttp/Rules.py b/worlds/alttp/Rules.py index 35762fe2..f8ecbb28 100644 --- a/worlds/alttp/Rules.py +++ b/worlds/alttp/Rules.py @@ -261,7 +261,7 @@ def global_rules(world, player): if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) - if not world.smallkey_shuffle[player] and world.logic[player] != 'nologic': + if not world.smallkey_shuffle[player] and world.logic[player] not in ['hybridglitches', 'nologic']: forbid_item(world.get_location('Swamp Palace - Entrance', player), 'Big Key (Swamp Palace)', player) set_rule(world.get_entrance('Thieves Town Big Key Door', player), lambda state: state.has('Big Key (Thieves Town)', player))