From f42233699ab7cdf947898b470101201164736c62 Mon Sep 17 00:00:00 2001 From: qwint Date: Fri, 4 Apr 2025 16:20:45 -0500 Subject: [PATCH] Core: make accessibility_corrections only state.remove if the location was collected --- Fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index d1773c82..efc8230f 100644 --- a/Fill.py +++ b/Fill.py @@ -348,10 +348,10 @@ def accessibility_corrections(multiworld: MultiWorld, state: CollectionState, lo if (location.item is not None and location.item.advancement and location.address is not None and not location.locked and location.item.player not in minimal_players): pool.append(location.item) - state.remove(location.item) location.item = None if location in state.advancements: state.advancements.remove(location) + state.remove(location.item) locations.append(location) if pool and locations: locations.sort(key=lambda loc: loc.progress_type != LocationProgressType.PRIORITY)