From 891c2d3565079e2b177533e0d2f67e0c4c19d256 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Wed, 3 Nov 2021 23:16:35 -0500 Subject: [PATCH] Fix issue with Crossed ER trying to use a previously consumed entrance --- EntranceShuffle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index e70b20b3..65d99e2e 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -557,10 +557,10 @@ def link_entrances(world, player): if world.logic[player] in ['noglitches', 'minorglitches'] or (invFlag != (0x1b in world.owswaps[player][0] and world.owMixed[player])): bomb_shop_doors = [e for e in entrance_pool if e not in ['Pyramid Fairy']] bomb_shop = random.choice(bomb_shop_doors) - pool.remove(bomb_shop) connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) # shuffle connectors + pool = [e for e in pool if e in entrance_pool] connect_caves(world, pool, [], caves, player) # place remaining doors