From b877ddb4d74a6e535d14c4d3702cd4c241a573c9 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 24 Jul 2022 21:49:28 -0500 Subject: [PATCH] Making file output prefix always OR --- Main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Main.py b/Main.py index d3d0b3d3..6241a830 100644 --- a/Main.py +++ b/Main.py @@ -139,10 +139,7 @@ def main(args, seed=None, fish=None): world.player_names[player].append(name) logger.info('') - if world.owShuffle[1] != 'vanilla' or world.owCrossed[1] not in ['none', 'polar'] or world.owMixed[1] or world.owWhirlpoolShuffle[1] or world.owFluteShuffle[1] != 'vanilla' or str(args.outputname).startswith('M'): - outfilebase = f'OR_{args.outputname if args.outputname else world.seed}' - else: - outfilebase = f'DR_{args.outputname if args.outputname else world.seed}' + outfilebase = f'OR_{args.outputname if args.outputname else world.seed}' for player in range(1, world.players + 1): world.difficulty_requirements[player] = difficulties[world.difficulty[player]]