Add fastrom disable option

This commit is contained in:
cassidoxa
2023-08-26 20:31:02 -04:00
parent aaaa7b9239
commit e4e0a9f5a1
5 changed files with 11 additions and 2 deletions

View File

@@ -42,6 +42,8 @@ def main(args, seed=None):
raise Exception("Goals requiring all items must use 'locations' accessibility")
if args.huditemcounter:
world.item_counter_hud = {player: True for player in range(1, world.players + 1)}
if args.nofastrom:
world.fastrom = False
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)