From 6acd08431e161193b6dac7b3352ef5d016e132dd Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sat, 9 Oct 2021 02:30:46 +0200 Subject: [PATCH] Core: fix set_seed seed passthrough --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 8e26a1e5..7b29a440 100644 --- a/Main.py +++ b/Main.py @@ -30,7 +30,7 @@ def main(args, seed=None): world = MultiWorld(args.multi) logger = logging.getLogger() - world.set_seed(secure=args.race, name=str(args.outputname if args.outputname else world.seed)) + world.set_seed(seed, args.race, str(args.outputname if args.outputname else world.seed)) world.shuffle = args.shuffle.copy() world.logic = args.logic.copy()