OoT: certain ER options convert closed forest into closed deku + child start

This commit is contained in:
espeon65536 2022-02-11 16:30:09 -06:00 committed by Fabian Dill
parent a2260ee6b2
commit f8009e4b84
1 changed files with 3 additions and 0 deletions

View File

@ -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: