diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-16 21:13:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-16 21:13:41 -0300 |
commit | 437de0bed82602fe0efe381f9a90c43011ef9762 (patch) | |
tree | cee61a09fa5aa0a2e202cde62ac888cb3594f611 /game | |
parent | f2c8774edf3e3ac58801c6027f36b992cd0e19aa (diff) | |
download | renpy-437de0bed82602fe0efe381f9a90c43011ef9762.tar.gz renpy-437de0bed82602fe0efe381f9a90c43011ef9762.tar.bz2 renpy-437de0bed82602fe0efe381f9a90c43011ef9762.tar.xz renpy-437de0bed82602fe0efe381f9a90c43011ef9762.zip |
TMWA: Always assume Mirror Lake was triggered, or it won't work :(
Diffstat (limited to 'game')
-rw-r--r-- | game/client.rpy | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/game/client.rpy b/game/client.rpy index 7aebf70..df31fcd 100644 --- a/game/client.rpy +++ b/game/client.rpy @@ -124,6 +124,10 @@ init 2 python: if not LEGACY: app=app.returncode + + if "tmwa" in TYPE.lower(): + app = 7 + ## Determine error messages if app == 7: stdout("[CLIENT] Mirror Lake triggered.") |