summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-05 19:51:39 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-05 19:51:39 +0300
commit5551e409419180097dd37b9a6919495a6b1be95c (patch)
tree87a88bfdeb2c4ce1b67a5a8a86c97ea53fa97f77 /src
parent4eaba0d76656965c20ee4b6bbb8a5873daabc296 (diff)
downloadmv-5551e409419180097dd37b9a6919495a6b1be95c.tar.gz
mv-5551e409419180097dd37b9a6919495a6b1be95c.tar.bz2
mv-5551e409419180097dd37b9a6919495a6b1be95c.tar.xz
mv-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.cpp2
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