From b6f913596b97cf5529e006886190f47b6ef1576a Mon Sep 17 00:00:00 2001 From: codemann8 Date: Thu, 29 Jul 2021 07:10:46 -0500 Subject: [PATCH] Fixed Mystery to not spoil OW Shuffle in filename --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 715b0ace..007595de 100644 --- a/Main.py +++ b/Main.py @@ -261,7 +261,7 @@ def main(args, seed=None, fish=None): customize_shops(world, player) balance_money_progression(world) - if world.owShuffle[1] != 'vanilla' or world.owSwap[1] != 'vanilla': + if world.owShuffle[1] != 'vanilla' or world.owSwap[1] != 'vanilla' or 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}'