diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-18 17:14:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-18 17:14:30 -0300 |
commit | e7ace9e7290ccf1d7feb9565276018af18f5f90c (patch) | |
tree | daaf408b286988835cb9a33ae84ba25100eb8bcd /game | |
parent | 86af710bbb6ebfc4360f4c767eb4c94028739ba3 (diff) | |
download | client-e7ace9e7290ccf1d7feb9565276018af18f5f90c.tar.gz client-e7ace9e7290ccf1d7feb9565276018af18f5f90c.tar.bz2 client-e7ace9e7290ccf1d7feb9565276018af18f5f90c.tar.xz client-e7ace9e7290ccf1d7feb9565276018af18f5f90c.zip |
Hide button to return to main menu when not in debug or development mode
Diffstat (limited to 'game')
-rw-r--r-- | game/screens.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/screens.rpy b/game/screens.rpy index 6c34baa..33b4392 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -351,7 +351,7 @@ screen navigation(): if _in_replay: textbutton _("End Replay") action EndReplay(confirm=True) - elif not main_menu: + elif not main_menu and (debug or config.developer): textbutton _("Main Menu") action SpheresMainMenu() textbutton _("About") action ShowMenu("about") |