Core: Fix early items bug with priority locations (#1167)
This commit is contained in:
parent
2af510328e
commit
802119502d
2
Fill.py
2
Fill.py
|
@ -294,7 +294,7 @@ def distribute_items_restrictive(world: MultiWorld) -> None:
|
||||||
{len(unplaced_early_items)} items early.")
|
{len(unplaced_early_items)} items early.")
|
||||||
itempool += unplaced_early_items
|
itempool += unplaced_early_items
|
||||||
|
|
||||||
fill_locations += early_locations + early_priority_locations
|
fill_locations += early_locations
|
||||||
world.random.shuffle(fill_locations)
|
world.random.shuffle(fill_locations)
|
||||||
|
|
||||||
for item in itempool:
|
for item in itempool:
|
||||||
|
|
Loading…
Reference in New Issue