Add unplaced_items into the fill sweep

This commit is contained in:
Brad Humphrey 2022-01-29 14:31:57 -07:00 committed by Fabian Dill
parent 814851ba60
commit 3cecab25c7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ def fill_restrictive(world: MultiWorld, base_state: CollectionState, locations,
for items in reachable_items.values() if items]
for item in items_to_place:
itempool.remove(item)
maximum_exploration_state = sweep_from_pool(base_state, itempool)
maximum_exploration_state = sweep_from_pool(base_state, itempool + unplaced_items)
has_beaten_game = world.has_beaten_game(maximum_exploration_state)