Skip to content

Commit

Permalink
Fix preset condition in MMMM.py
Browse files Browse the repository at this point in the history
  • Loading branch information
StructuralMike committed Jan 2, 2024
1 parent f1aac91 commit 4df4337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MMMM.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4df4337

Please sign in to comment.