From 44638ccc1a137342ae3189a9e0d18cc42bf6d630 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sat, 14 May 2022 23:04:16 +0200 Subject: [PATCH] Fill: fix priority_locations being undone by prog_balancing shop shuffle and other late-fills (#513) --- Fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index dbe6b342..cdb39b65 100644 --- a/Fill.py +++ b/Fill.py @@ -166,7 +166,7 @@ def distribute_items_restrictive(world: MultiWorld) -> None: defaultlocations = locations[LocationProgressType.DEFAULT] excludedlocations = locations[LocationProgressType.EXCLUDED] - fill_restrictive(world, world.state, prioritylocations, progitempool) + fill_restrictive(world, world.state, prioritylocations, progitempool, lock=True) if prioritylocations: defaultlocations = prioritylocations + defaultlocations