From 10e8010f9b7b28fc998366550a35c0a941a77bec Mon Sep 17 00:00:00 2001 From: Map Date: Wed, 2 Oct 2024 10:52:48 -0500 Subject: [PATCH] fix chapter select needing developer mode enabled --- game/screens.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/screens.rpy b/game/screens.rpy index 2ebb355..3a056b2 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -359,7 +359,7 @@ screen navigation(): textbutton _("Load") activate_sound "audio/ui/uiClick.wav" action ShowMenu("load") textbutton _("Delete") activate_sound "audio/ui/uiClick.wav" action ShowMenu("delete") - if config.developer and persistent.enable_chapter_select: + if config.developer or persistent.enable_chapter_select: textbutton _("Chapter Select") activate_sound "audio/ui/uiClick.wav" action Start("chapter_select") textbutton _("Options") activate_sound "audio/ui/uiClick.wav" action ShowMenu("preferences")