From 6cdcc800e0684a6908530d7fd7c580c9776f487a Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 7 Dec 2025 00:00:14 -0600 Subject: [PATCH] Fixed error with non-prize shuffle --- Fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index b1a7c188..c47a2f3d 100644 --- a/Fill.py +++ b/Fill.py @@ -183,7 +183,7 @@ def fill_restrictive(world, base_state, locations, itempool, key_pool=None, sing spot_to_fill = None item_locations = filter_locations(item_to_place, locations, world, vanilla) - if is_dungeon_item(item_to_place, world): + if is_dungeon_item(item_to_place, world) and not (item_to_place.prize and world.prizeshuffle[item_to_place.player] == 'none'): item_locations = [l for l in item_locations if valid_dungeon_placement(item_to_place, l, world)] verify(item_to_place, item_locations, maximum_exploration_state, single_player_placement, perform_access_check, key_pool, world)