Some further fixes to Prize Shuffle

This commit is contained in:
codemann8
2024-05-24 16:19:37 -05:00
parent 39dc0abb53
commit 747f5fae98
5 changed files with 8 additions and 8 deletions

View File

@@ -270,7 +270,7 @@ def track_dungeon_items(item, location, world):
def is_dungeon_item(item, world):
return ((item.prize and world.prizeshuffle[item.player] == 'none')
return ((item.prize and world.prizeshuffle[item.player] in ['none', 'dungeon'])
or (item.smallkey and world.keyshuffle[item.player] == 'none')
or (item.bigkey and not world.bigkeyshuffle[item.player])
or (item.compass and not world.compassshuffle[item.player])