diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-05 19:51:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-05 19:51:39 +0300 |
commit | 5551e409419180097dd37b9a6919495a6b1be95c (patch) | |
tree | 87a88bfdeb2c4ce1b67a5a8a86c97ea53fa97f77 /src | |
parent | 4eaba0d76656965c20ee4b6bbb8a5873daabc296 (diff) | |
download | plus-5551e409419180097dd37b9a6919495a6b1be95c.tar.gz plus-5551e409419180097dd37b9a6919495a6b1be95c.tar.bz2 plus-5551e409419180097dd37b9a6919495a6b1be95c.tar.xz plus-5551e409419180097dd37b9a6919495a6b1be95c.zip |
Disable server features incomplete chat messages for tmwa server version more than 0x100209.
Diffstat (limited to 'src')
-rw-r--r-- | src/net/tmwa/serverfeatures.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp index 802427315..8337aa03e 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -76,7 +76,7 @@ bool ServerFeatures::haveNativeGuilds() const bool ServerFeatures::haveIncompleteChatMessages() const { - return tmwServerVersion > 0; + return tmwServerVersion > 0 && tmwServerVersion <= 0x100209; } bool ServerFeatures::haveRaceSelection() const |