Core: Fix early items bug with priority locations (#1167)

This commit is contained in:
Alchav 2022-10-31 23:26:55 -04:00 committed by GitHub
parent 2af510328e
commit 802119502d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ def distribute_items_restrictive(world: MultiWorld) -> None:
{len(unplaced_early_items)} items early.")
itempool += unplaced_early_items
fill_locations += early_locations + early_priority_locations
fill_locations += early_locations
world.random.shuffle(fill_locations)
for item in itempool: