From b130b0b76bc39af725a2507af485fb02bfd12cd4 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Fri, 20 Aug 2021 08:09:45 -0500 Subject: [PATCH] Fixed issue with Mixed and Crossed getting turned on incorrectly in Mystery --- Mystery.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mystery.py b/Mystery.py index f92764d9..7efda4af 100644 --- a/Mystery.py +++ b/Mystery.py @@ -133,9 +133,9 @@ def roll_settings(weights): overworld_shuffle = get_choice('overworld_shuffle') ret.ow_shuffle = overworld_shuffle if overworld_shuffle != 'none' else 'vanilla' - ret.ow_crossed = get_choice('overworld_crossed') ret.ow_keepsimilar = get_choice('overworld_keepsimilar') - ret.ow_mixed = get_choice('overworld_mixed') + ret.ow_crossed = get_choice('overworld_crossed') == 'on' + ret.ow_mixed = get_choice('overworld_mixed') == 'on' overworld_flute = get_choice('flute_shuffle') ret.ow_fluteshuffle = overworld_flute if overworld_flute != 'none' else 'vanilla' entrance_shuffle = get_choice('entrance_shuffle')