summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-11-23 10:35:39 -0300
committerJesusaves <cpntb1@ymail.com>2021-11-23 10:35:39 -0300
commite7d02c8ef56a0730352fe6b0f39fbd90413bca85 (patch)
tree0cfb1c226b76d56156d9b7b485220c2dc7ec254e
parent0c75729f23a56afbec42ce7560fafa6f55540f21 (diff)
downloadrenpy-e7d02c8ef56a0730352fe6b0f39fbd90413bca85.tar.gz
renpy-e7d02c8ef56a0730352fe6b0f39fbd90413bca85.tar.bz2
renpy-e7d02c8ef56a0730352fe6b0f39fbd90413bca85.tar.xz
renpy-e7d02c8ef56a0730352fe6b0f39fbd90413bca85.zip
Change default behavior to skip the main menu screen.
It is only an extra click, anyway
-rw-r--r--game/core.rpy6
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("")