From 4df43376db2e3726fd15808f9594db65904025ff Mon Sep 17 00:00:00 2001 From: StructuralMike <66819228+StructuralMike@users.noreply.github.com> Date: Tue, 2 Jan 2024 23:45:17 +0100 Subject: [PATCH] Fix preset condition in MMMM.py --- MMMM.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMMM.py b/MMMM.py index 97541b1..4731be5 100644 --- a/MMMM.py +++ b/MMMM.py @@ -558,7 +558,7 @@ def main(): input_weights['mystery']['on']['weight'] = 0 input_weights['mystery']['off']['weight'] = 1 - if preset in ['friendly', 'notslow']: + if args.preset in ['friendly', 'notslow']: input_weights['door_shuffle']['vanilla']['weight'] = 1000 mystery_settings = make_mystery(input_weights, default_settings, args)