From 80fc18146a58b6efb344b6ed2cce38d8efb7991f Mon Sep 17 00:00:00 2001 From: codemann8 Date: Fri, 20 Aug 2021 12:30:42 -0500 Subject: [PATCH] Fixed issue with Keep Similar getting turned on incorrectly in Mystery --- Mystery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mystery.py b/Mystery.py index 7efda4af..fa6bc992 100644 --- a/Mystery.py +++ b/Mystery.py @@ -133,7 +133,7 @@ def roll_settings(weights): overworld_shuffle = get_choice('overworld_shuffle') ret.ow_shuffle = overworld_shuffle if overworld_shuffle != 'none' else 'vanilla' - ret.ow_keepsimilar = get_choice('overworld_keepsimilar') + ret.ow_keepsimilar = get_choice('overworld_keepsimilar') == 'on' ret.ow_crossed = get_choice('overworld_crossed') == 'on' ret.ow_mixed = get_choice('overworld_mixed') == 'on' overworld_flute = get_choice('flute_shuffle')