From 270d10b6980b69ce3060945d46a3559cd56e7450 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Tue, 23 Aug 2022 16:52:43 -0500 Subject: [PATCH] Possible fix for SK placement errors --- Fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index fa6db391..8dfa69cc 100644 --- a/Fill.py +++ b/Fill.py @@ -61,7 +61,7 @@ def fill_dungeons_restrictive(world, shuffled_locations): small_state_base = all_state_base.copy() for x in others: small_state_base.collect(x, True) - fill(small_state_base, smalls, smalls) + fill(small_state_base, smalls, list(smalls)) random.shuffle(shuffled_locations) fill(all_state_base, others, None)