From 730b97b37f070f79829e13f47cb1b845c4138e60 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Thu, 29 Jul 2021 06:51:18 -0500 Subject: [PATCH] Fixed Flute Shuffle overwriting OW Swap in Mystery --- Mystery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mystery.py b/Mystery.py index 7b46e72b..8302398e 100644 --- a/Mystery.py +++ b/Mystery.py @@ -137,7 +137,7 @@ def roll_settings(weights): ret.ow_swap = overworld_swap if overworld_swap != 'none' else 'vanilla' ret.ow_keepsimilar = get_choice('overworld_keepsimilar') overworld_flute = get_choice('flute_shuffle') - ret.ow_swap = overworld_flute if overworld_flute != 'none' else 'vanilla' + ret.ow_fluteshuffle = overworld_flute if overworld_flute != 'none' else 'vanilla' entrance_shuffle = get_choice('entrance_shuffle') ret.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla' door_shuffle = get_choice('door_shuffle')