From 1327408a017c3248ca5ae2570c1974e02e472c88 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Thu, 14 Oct 2021 14:12:26 -0500 Subject: [PATCH] Fixed some mode specific things that get enabled in OWR --- Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rules.py b/Rules.py index a99fc196..ef688f37 100644 --- a/Rules.py +++ b/Rules.py @@ -2061,7 +2061,7 @@ def set_inverted_big_bomb_rules(world, player): else: raise Exception('No logic found for routing from %s to the pyramid.' % bombshop_entrance.name) - if world.owShuffle[player] != 'vanilla' or world.owMixed[player] or world.owCrossed[player] != 'none': + if world.owShuffle[player] != 'vanilla' or world.owMixed[player] or world.owCrossed[player] not in ['none', 'polar']: set_rule(world.get_entrance('Pyramid Fairy', player), lambda state: False) #temp disable progression until routing to Pyramid get be guaranteed