summaryrefslogtreecommitdiff
path: root/src/net/tmwa/serverfeatures.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-20 18:18:03 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-20 18:18:03 +0300
commitcf2a41b8a691e3ecfeef8289cb0a21989ceac882 (patch)
tree4074a3935525877ca5e01bab48714ea5f930d541 /src/net/tmwa/serverfeatures.cpp
parenta111555bd7dbb939673f25f1e8a1f211f61250ad (diff)
downloadplus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.tar.gz
plus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.tar.bz2
plus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.tar.xz
plus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.zip
Remove from tmwa namespace checks for haveItemColors.
Diffstat (limited to 'src/net/tmwa/serverfeatures.cpp')
-rw-r--r--src/net/tmwa/serverfeatures.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp
index 25d024e04..928740281 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -61,12 +61,12 @@ bool ServerFeatures::haveServerHp() const
bool ServerFeatures::havePlayerStatusUpdate() const
{
- return serverVersion >= 4;
+ return false;
}
bool ServerFeatures::haveBrokenPlayerAttackDistance() const
{
- return serverVersion < 1;
+ return true;
}
bool ServerFeatures::haveNativeGuilds() const
@@ -81,12 +81,12 @@ bool ServerFeatures::haveIncompleteChatMessages() const
bool ServerFeatures::haveRaceSelection() const
{
- return serverVersion >= 2;
+ return false;
}
bool ServerFeatures::haveLookSelection() const
{
- return serverVersion >= 9;
+ return false;
}
bool ServerFeatures::haveChatChannels() const
@@ -101,12 +101,12 @@ bool ServerFeatures::haveServerIgnore() const
bool ServerFeatures::haveMove3() const
{
- return serverVersion >= 10 || tmwServerVersion >= 0x0f0512;
+ return tmwServerVersion >= 0x0f0512;
}
bool ServerFeatures::haveItemColors() const
{
- return serverVersion >= 1;
+ return false;
}
bool ServerFeatures::haveOtherGender() const