From 0b5c1e70aee15ed8b9d53c557dc04519809ff4c0 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 31 Oct 2021 00:08:21 -0500 Subject: [PATCH] Fix issue with SP not flooding lobby in vanilla DR/ER --- Plando.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plando.py b/Plando.py index fa9fa848..77e1d77c 100755 --- a/Plando.py +++ b/Plando.py @@ -58,7 +58,7 @@ def main(args): fill_world(world, args.plando) - if world.get_entrance('Dam', 1).connected_region.name != 'Dam' or world.get_entrance('Swamp Palace', 1).connected_region.name != 'Swamp Palace (Entrance)': + if not (world.get_entrance('Dam', 1).connected_region.name in ['Dam', 'Swamp Portal'] and world.get_entrance('Swamp Palace', 1).connected_region.name in ['Swamp Portal', 'Dam']): world.swamp_patch_required[1] = True logger.info('Calculating playthrough.')