From 54e300a9e7116f8b580e67c8221024adc8924a00 Mon Sep 17 00:00:00 2001 From: cassidy <43386495+cassidoxa@users.noreply.github.com> Date: Fri, 7 Feb 2020 17:16:24 -0500 Subject: [PATCH] Get timer and progressive settings from dict for file name (#29) --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index e150dc06..5c8bea7a 100644 --- a/Main.py +++ b/Main.py @@ -201,7 +201,7 @@ def main(args, seed=None): "" if world.timer[player] in ['none', 'display'] else "-" + world.timer[player], world.shuffle[player], world.algorithm, mcsb_name, "-retro" if world.retro[player] else "", - "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", + "-prog_" + world.progressive[player] if world.progressive[player] in ['off', 'random'] else "", "-nohints" if not world.hints[player] else "")) if not args.outputname else '' rom.write_to_file(output_path(f'{outfilebase}{outfilepname}{outfilesuffix}.sfc'))