From 2c21d95e57838610b19b4a1cceafef5fc1e97284 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sat, 2 Oct 2021 20:00:37 -0500 Subject: [PATCH] Minor filename output change --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 220ca123..056c010e 100644 --- a/Main.py +++ b/Main.py @@ -265,7 +265,7 @@ def main(args, seed=None, fish=None): customize_shops(world, player) balance_money_progression(world) - if world.owShuffle[1] != 'vanilla' or world.owCrossed[1] != 'none' or world.owMixed[1] or str(world.seed).startswith('M'): + if world.owShuffle[1] != 'vanilla' or world.owCrossed[1] not in ['none', 'polar'] or world.owMixed[1] or str(world.seed).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}'