From 3983bf347fbf16af032331d7fc4291f291d601b4 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 24 Jul 2022 20:57:58 -0500 Subject: [PATCH] Fixed Namespace error in Mystery with Bonk Drop option --- Mystery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mystery.py b/Mystery.py index 60a3f064..1a02d10d 100644 --- a/Mystery.py +++ b/Mystery.py @@ -174,7 +174,7 @@ def roll_settings(weights): ret.ow_whirlpool = get_choice('whirlpool_shuffle') == 'on' overworld_flute = get_choice('flute_shuffle') ret.ow_fluteshuffle = overworld_flute if overworld_flute != 'none' else 'vanilla' - ret.shuffle_bonk_drops = get_choice('bonk_drops') == 'on' + ret.bonk_drops = get_choice('bonk_drops') == 'on' entrance_shuffle = get_choice('entrance_shuffle') ret.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla' overworld_map = get_choice('overworld_map')