Merge pull request #109 from Berserker66/extended_triforce_hunt

Change max triforce_pieces_required from 30 to 112.
This commit is contained in:
Fabian Dill
2020-06-17 10:34:59 +02:00
committed by GitHub
6 changed files with 40 additions and 5 deletions

View File

@@ -58,6 +58,7 @@ def main(args, seed=None):
world.progressive = args.progressive.copy()
world.dungeon_counters = args.dungeon_counters.copy()
world.glitch_boots = args.glitch_boots.copy()
world.triforce_pieces_available = args.triforce_pieces_available.copy()
world.triforce_pieces_required = args.triforce_pieces_required.copy()
world.progression_balancing = {player: not balance for player, balance in args.skip_progression_balancing.items()}
@@ -87,6 +88,8 @@ def main(args, seed=None):
world.push_precollected(item)
world.local_items[player] = {item.strip() for item in args.local_items[player].split(',')}
world.triforce_pieces_available[player] = max(world.triforce_pieces_available[player], world.triforce_pieces_required[player])
if world.mode[player] != 'inverted':
create_regions(world, player)
else: