From b517c5305fab5f6a2981a1c19fa9afc029affed6 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Mon, 2 May 2022 05:48:17 -0500 Subject: [PATCH] Including mystery seed number in spoiler log so it is easier to match them with rom filename --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 5064acc2..0489b8bd 100644 --- a/Main.py +++ b/Main.py @@ -119,7 +119,7 @@ def main(args, seed=None, fish=None): logger.info( world.fish.translate("cli","cli","app.title") + "\n", ORVersion, - world.seed, + "%s (%s)" % (world.seed, str(args.outputname)) if str(args.outputname).startswith('M') else world.seed, Settings.make_code(world, 1) if world.players == 1 else '' )