diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-09 15:11:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-09 15:11:18 -0300 |
commit | cd45f4cef59cf5dffe10ecf071baf397882dc4ab (patch) | |
tree | 85d3bc4fdbbf1aa9c9a0e9e8a2c9eb9364f0fcc4 /game | |
parent | dd8ef3fb60fa939de331a5fe341b6896fe23dfc2 (diff) | |
download | renpy-cd45f4cef59cf5dffe10ecf071baf397882dc4ab.tar.gz renpy-cd45f4cef59cf5dffe10ecf071baf397882dc4ab.tar.bz2 renpy-cd45f4cef59cf5dffe10ecf071baf397882dc4ab.tar.xz renpy-cd45f4cef59cf5dffe10ecf071baf397882dc4ab.zip |
Actually "menu" is a bad keyword
Diffstat (limited to 'game')
-rw-r--r-- | game/client.rpy | 2 | ||||
-rw-r--r-- | game/discord.rpy | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/game/client.rpy b/game/client.rpy index 6ea5a65..8a80ad4 100644 --- a/game/client.rpy +++ b/game/client.rpy @@ -69,7 +69,7 @@ init 2 python: progress=100 # Clean discord RPC and go back to world selection menu - RPCUpdate("Main Menu", "menu") + RPCUpdate("Main Menu", "launcher") return def md5check_client(): diff --git a/game/discord.rpy b/game/discord.rpy index 7f70991..0367b8a 100644 --- a/game/discord.rpy +++ b/game/discord.rpy @@ -57,7 +57,7 @@ label before_main_menu: **{ 'details': 'Main Menu', 'start_timestamp': float(now()), - 'large_image_key': 'menu' + 'large_image_key': 'launcher' } ) discord_rpc.update_connection() |