diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-04 03:09:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-04 03:09:39 +0300 |
commit | a1c9111f570c01f5a470c1f6ddbdd8b4672ddcbd (patch) | |
tree | 888580adafd0cb6b006f5dd57659af87494aaa41 /src | |
parent | 744f2a09e9ea5b6c0dae05685ac582c61b07cb6f (diff) | |
download | plus-a1c9111f570c01f5a470c1f6ddbdd8b4672ddcbd.tar.gz plus-a1c9111f570c01f5a470c1f6ddbdd8b4672ddcbd.tar.bz2 plus-a1c9111f570c01f5a470c1f6ddbdd8b4672ddcbd.tar.xz plus-a1c9111f570c01f5a470c1f6ddbdd8b4672ddcbd.zip |
Disable haveMove3 feature for some tmwa server versions.
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 342f594af..c32dac11e 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -101,7 +101,7 @@ bool ServerFeatures::haveServerIgnore() const bool ServerFeatures::haveMove3() const { - return tmwServerVersion >= 0x0f0512; + return tmwServerVersion >= 0x0f0512 && tmwServerVersion <= 0xf0706; } bool ServerFeatures::haveItemColors() const |