Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions ItemPool.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,13 @@ def get_pool_core(world: World) -> tuple[list[str], dict[str, Item]]:
if shuffle_setting is not None and dungeon_collection is not None and not shuffle_item:
if shuffle_setting in ('remove', 'startwith'):
world.state.collect(ItemFactory(item, world))
item = get_junk_item()[0]
shuffle_item = True
if location.type == 'SilverRupee':
# Silver rupees handled differently since removing them actually removes their locations from the world
item = IGNORE_LOCATION
shuffle_item = False
else:
item = get_junk_item()[0]
shuffle_item = True
elif shuffle_setting in ('any_dungeon', 'overworld', 'keysanity', 'regional', 'anywhere') and not world.precompleted_dungeons.get(dungeon.name, False):
shuffle_item = True
elif shuffle_item is None:
Expand Down
Loading