From 0f8efed663b35928cc9ac0239d18784018573768 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Tue, 24 Aug 2021 23:26:57 -0500 Subject: [PATCH] Fixed Limited OW to abide by Keep Similar option --- OverworldShuffle.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OverworldShuffle.py b/OverworldShuffle.py index 5ae6fdbb..d705f1a1 100644 --- a/OverworldShuffle.py +++ b/OverworldShuffle.py @@ -169,8 +169,7 @@ def link_overworld(world, player): if world.owCrossed[player] == 'chaos' and random.randint(0, 1): crossed_edges.append(edge) elif world.owCrossed[player] == 'limited': - crossed_candidates.append(forward_set) - break + crossed_candidates.append(edge) if world.owCrossed[player] == 'limited': random.shuffle(crossed_candidates) for edge_set in crossed_candidates[:9]: