diff --git a/worlds/noita/items.py b/worlds/noita/items.py index 4cd0b5ef87..740ce587fe 100644 --- a/worlds/noita/items.py +++ b/worlds/noita/items.py @@ -79,7 +79,7 @@ def create_all_items(world: NoitaWorld) -> None: if world.multiworld.players == 1: for location in world.multiworld.get_unfilled_locations(player): if "Shop Item" in location.name: - location.item = create_item(player, itempool.pop()) + world.multiworld.push_item(location, create_item(player, itempool.pop()), False) locations_to_fill = len(world.multiworld.get_unfilled_locations(player)) itempool += create_random_items(world, filler_weights, locations_to_fill - len(itempool))