From f8009e4b840f9bcf2a6195545dc31cd6011271c2 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Fri, 11 Feb 2022 16:30:09 -0600 Subject: [PATCH] OoT: certain ER options convert closed forest into closed deku + child start --- worlds/oot/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/worlds/oot/__init__.py b/worlds/oot/__init__.py index 20139d03..b8053493 100644 --- a/worlds/oot/__init__.py +++ b/worlds/oot/__init__.py @@ -159,6 +159,9 @@ class OOTWorld(World): # Closed forest and adult start are not compatible; closed forest takes priority if self.open_forest == 'closed': self.starting_age = 'child' + # These ER options force closed forest to become closed deku + if (self.shuffle_interior_entrances == 'all' or self.shuffle_overworld_entrances or self.warp_songs or self.spawn_positions): + self.open_forest = 'closed_deku' # Skip child zelda and shuffle egg are not compatible; skip-zelda takes priority if self.skip_child_zelda: