summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-19 15:41:08 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-19 15:41:08 -0300
commit93c01c88ba2234929f7cd7f1e4600c25a8575173 (patch)
treeb06fe475a5682a084fc7bdab4109b9bb457a9828
parent89300a9eea1871ef6dbb3c2074c7c6dc81960d36 (diff)
downloadrenpy-93c01c88ba2234929f7cd7f1e4600c25a8575173.tar.gz
renpy-93c01c88ba2234929f7cd7f1e4600c25a8575173.tar.bz2
renpy-93c01c88ba2234929f7cd7f1e4600c25a8575173.tar.xz
renpy-93c01c88ba2234929f7cd7f1e4600c25a8575173.zip
Swap order on version request
-rw-r--r--game/core.rpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/core.rpy b/game/core.rpy
index 3b2f6f5..e47a89c 100644
--- a/game/core.rpy
+++ b/game/core.rpy
@@ -234,7 +234,7 @@ init -4 python:
print("Auto-launch mode Enabled")
AUTOLAUNCH = True
elif (cmd == "version"):
- print("%s %s v%s" % (config.name, "Mirror Lake", config.version))
+ print("%s v%s %s" % (config.name, config.version, "Mirror Lake"))
renpy.quit()
elif (cmd == "help"):
print("=========================================================")