From fb0f70b3e3c998733137003e9fcfaa38869e05f7 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Tue, 31 Aug 2021 19:49:12 -0500 Subject: [PATCH] make owg entrances in inverted --- worlds/alttp/EntranceShuffle.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/worlds/alttp/EntranceShuffle.py b/worlds/alttp/EntranceShuffle.py index 6871f99b..2d555930 100644 --- a/worlds/alttp/EntranceShuffle.py +++ b/worlds/alttp/EntranceShuffle.py @@ -1774,9 +1774,11 @@ def link_inverted_entrances(world, player): else: raise NotImplementedError('Shuffling not supported yet') - # mandatory hybrid major glitches connections - if world.logic[player] in ['hybridglitches', 'nologic']: - underworld_glitch_connections(world, player) + if world.logic[player] in ['owglitches', 'hybridglitches', 'nologic']: + overworld_glitch_connections(world, player) + # mandatory hybrid major glitches connections + if world.logic[player] in ['hybridglitches', 'nologic']: + underworld_glitch_connections(world, player) # patch swamp drain if world.get_entrance('Dam', player).connected_region.name != 'Dam' or world.get_entrance('Swamp Palace', player).connected_region.name != 'Swamp Palace (Entrance)':