From e7d02c8ef56a0730352fe6b0f39fbd90413bca85 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 23 Nov 2021 10:35:39 -0300 Subject: Change default behavior to skip the main menu screen. It is only an extra click, anyway --- game/core.rpy | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/game/core.rpy b/game/core.rpy index 8da3f7f..7d6bce4 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -241,7 +241,7 @@ default MLP_DEST = None ## Command Line Interface init -4 python: USE_DUMMY_DATA = False - AUTOLAUNCH = False + AUTOLAUNCH = True AUTOWORLD = 0 def parse_command(): global USE_DUMMY_DATA, AUTOLAUNCH, AUTOWORLD @@ -269,6 +269,9 @@ init -4 python: elif (cmd == "launch"): print("Auto-launch mode Enabled") AUTOLAUNCH = True + elif (cmd == "select"): + print("Auto-launch mode Disabled") + AUTOLAUNCH = True elif (cmd == "remote"): print("Using remote servers...") VAULT_HOST = "https://api.themanaworld.org:13370" @@ -297,6 +300,7 @@ init -4 python: print("steam - Enables Steam login") print("dummy - do not login, use a dummy data for testing") print("launch - skip main menu screen") + print("select - show main menu screen") print("version - shows the program version and exits") print("help - shows this help screen and exits") print("") -- cgit v1.2.3-70-g09d2