From ce1e3c23b04b55e9d0abebdc9dc8372754ae0fb9 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Wed, 11 May 2022 14:38:33 -0500 Subject: [PATCH] Including other OW modes that affect the output filename --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 0489b8bd..8453c90a 100644 --- a/Main.py +++ b/Main.py @@ -135,7 +135,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 str(args.outputname).startswith('M'): + 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}'