From 8e5cf52e275592f6c50e9da0933d70b45eff8bdd Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 20 Jan 2020 03:36:03 +0100 Subject: [PATCH] only heartbeep needs an "off" as text --- Mystery.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mystery.py b/Mystery.py index 2d18f8d3..b73c3706 100644 --- a/Mystery.py +++ b/Mystery.py @@ -221,11 +221,11 @@ def roll_settings(weights): ret.sprite = get_choice('sprite', romweights) ret.disablemusic = get_choice('disablemusic', romweights) ret.quickswap = get_choice('quickswap', romweights) - ret.fastmenu = convert_to_on_off(get_choice('menuspeed', romweights)) + ret.fastmenu = get_choice('menuspeed', romweights) ret.heartcolor = get_choice('heartcolor', romweights) ret.heartbeep = convert_to_on_off(get_choice('heartbeep', romweights)) - ret.ow_palettes = convert_to_on_off(get_choice('ow_palettes', romweights)) - ret.uw_palettes = convert_to_on_off(get_choice('uw_palettes', romweights)) + ret.ow_palettes = get_choice('ow_palettes', romweights) + ret.uw_palettes = get_choice('uw_palettes', romweights) return ret