From a8f92b5932b862ad399ebd836623e2cb53997179 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Fri, 23 Jul 2021 16:24:26 -0500 Subject: [PATCH] Undo ER Inverted AT changes from DR --- EntranceShuffle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 0cccb347..ca281ea7 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -493,7 +493,7 @@ def link_entrances(world, player): if invFlag: # shuffle aga door first. if it's on hc ledge, then one other hc ledge door has to be must_exit all_entrances_aga = lw_entrances + dw_entrances - aga_doors = [i for i in all_entrances_aga if world.shufflelinks[player]] + aga_doors = [i for i in all_entrances_aga] random.shuffle(aga_doors) aga_door = aga_doors.pop() @@ -687,7 +687,7 @@ def link_entrances(world, player): if invFlag: # shuffle aga door. if it's on hc ledge, then one other hc ledge door has to be must_exit - aga_choices = [x for x in entrances if world.shufflelinks[player]] + aga_choices = [x for x in entrances] aga_door = random.choice(aga_choices) if aga_door in hc_ledge_entrances: