Added an option to pre-open the pyramid hole (aka "fast ganon")

This commit is contained in:
Bonta-kun
2019-12-12 09:20:32 +01:00
parent 4ca063be54
commit 25068bcfdd
6 changed files with 13 additions and 5 deletions

View File

@@ -36,6 +36,7 @@ def main(args, seed=None):
world.crystals_needed_for_ganon = random.randint(0, 7) if args.crystals_ganon == 'random' else int(args.crystals_ganon)
world.crystals_needed_for_gt = random.randint(0, 7) if args.crystals_gt == 'random' else int(args.crystals_gt)
world.open_pyramid = args.openpyramid
world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)}