Disallow non-local pendants and crystals

This commit is contained in:
CaitSith2 2020-12-19 16:23:21 -08:00
parent 35c00588ba
commit 2fccb3751c
1 changed files with 4 additions and 0 deletions

View File

@ -131,6 +131,10 @@ def main(args, seed=None):
if not world.bigkeyshuffle[player]:
world.non_local_items[player] -= item_name_groups['Big Keys']
# Not possible to place pendants/crystals out side of boss prizes yet.
world.non_local_items[player] -= item_name_groups['Pendants']
world.non_local_items[player] -= item_name_groups['Crystals']
world.triforce_pieces_available[player] = max(world.triforce_pieces_available[player], world.triforce_pieces_required[player])
if world.mode[player] != 'inverted':