From 9fa89d9d3d5a041ca577f6089997b542d9c5d330 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 8 Aug 2021 18:38:51 -0500 Subject: [PATCH] Fixed issue with vanilla OW failing to pick a filename --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index a9ebf3cf..d59588f1 100644 --- a/Main.py +++ b/Main.py @@ -263,7 +263,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' or world.seed.startsWith('M'): + if world.owShuffle[1] != 'vanilla' or world.owSwap[1] != 'vanilla' 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}'