From 557ce88ff42ab5ceee11e015ad32affd18772bac Mon Sep 17 00:00:00 2001 From: Map Date: Sat, 5 Oct 2024 08:09:52 -0500 Subject: [PATCH] Remove check that makes developer tools only appear when config.developer is on --- game/screens.rpy | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/game/screens.rpy b/game/screens.rpy index eb9afd0..2a6b5ba 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -998,12 +998,11 @@ screen preferences(): textbutton _("After Choices") action [Function(onclick_audio, preferences.skip_after_choices), ToggleVariable("preferences.skip_after_choices", True, False)] textbutton _("Transitions") action [Function(onclick_audio, preferences.transitions, True), ToggleVariable("preferences.transitions", 0, 2)] - if config.developer: - vbox: - style_prefix "check" - label _("Developer Tools") - textbutton _("Enable Debug Scores") action ToggleVariable("persistent.enable_debug_scores", True, False) - textbutton _("Enable Chapter Select") action ToggleVariable("persistent.enable_chapter_select", True, False) + vbox: + style_prefix "check" + label _("Developer Tools") + textbutton _("Enable Debug Scores") action ToggleVariable("persistent.enable_debug_scores", True, False) + textbutton _("Enable Chapter Select") action ToggleVariable("persistent.enable_chapter_select", True, False) if not main_menu: if config.developer and persistent.enable_debug_scores: