Additional fixes for Ice Rod Hunt

This commit is contained in:
CaitSith2
2021-01-26 07:06:33 -08:00
parent 1275e49073
commit c88d9b4339
3 changed files with 9 additions and 3 deletions

View File

@@ -178,6 +178,9 @@ def distribute_items_restrictive(world, gftower_trash=False, fill_locations=None
unplaced = [item for item in progitempool + prioitempool + restitempool]
unfilled = [location.name for location in fill_locations]
for location in fill_locations:
world.push_item(location, ItemFactory('Nothing', location.player), False)
if unplaced or unfilled:
logging.warning('Unplaced items: %s - Unfilled Locations: %s', unplaced, unfilled)