From cf20c0781fb4fc537eeca0a9a5ce98ff70ff1e6d Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Wed, 17 Nov 2021 10:26:18 -0600 Subject: [PATCH] OoT: fixed glitched not rolling set internal value of shuffle_interior_entrances to False instead of 'off' --- worlds/oot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/oot/__init__.py b/worlds/oot/__init__.py index a97a6a0b..ebd532fc 100644 --- a/worlds/oot/__init__.py +++ b/worlds/oot/__init__.py @@ -147,7 +147,7 @@ class OOTWorld(World): # Incompatible option handling # ER and glitched logic are not compatible; glitched takes priority if self.logic_rules == 'glitched': - self.shuffle_interior_entrances = False + self.shuffle_interior_entrances = 'off' self.shuffle_grotto_entrances = False self.shuffle_dungeon_entrances = False self.shuffle_overworld_entrances = False