From f01b75595d0cbfff5699219de25b0fd153dfb133 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 17 Oct 2021 12:20:31 -0500 Subject: [PATCH] Fix issue with subsequent seed generations placing invalid entrances --- EntranceShuffle.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 960f80dc..43e87cbc 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -13,7 +13,10 @@ suppress_spoiler = True def link_entrances(world, player): invFlag = world.mode[player] == 'inverted' - global entrance_pool, exit_pool, ignore_pool, suppress_spoiler + global entrance_pool, exit_pool, ignore_pool, suppress_spoiler, entrance_exits + entrance_exits = list() + ignore_pool = False + suppress_spoiler = True links_house = False entrance_pool = Entrance_Pool_Base.copy() exit_pool = Exit_Pool_Base.copy()