Merge remote-tracking branch 'codemann/OverworldShuffle' into codemann_OverworldShuffle

This commit is contained in:
2026-01-31 08:57:53 -06:00
13 changed files with 306 additions and 265 deletions

View File

@@ -364,9 +364,10 @@ def generate_itempool(world, player):
world.escape_assist[player].append('bombs')
for (location, item) in placed_items.items():
world.push_item(world.get_location(location, player), ItemFactory(item, player), False)
world.get_location(location, player).event = True
world.get_location(location, player).locked = True
loc = world.get_location(location, player)
world.push_item(loc, ItemFactory(item, player), False)
loc.event = True
loc.locked = True
if world.shopsanity[player] and not skip_pool_adjustments:
for shop in world.shops[player]: