diff options
-rw-r--r-- | game/core.rpy | 6 |
1 files changed, 5 insertions, 1 deletions
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("") |