Add unplaced_items into the fill sweep
This commit is contained in:
parent
814851ba60
commit
3cecab25c7
2
Fill.py
2
Fill.py
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue