diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-01 01:22:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-01 02:37:10 +0300 |
commit | 8076d645b7a4271b9b5f100f5ea881891fea7d7c (patch) | |
tree | fecf49e032f39799a7f26fc069e13a06efe094af /src/net/eathena | |
parent | 21244eb0c558f5d33c9a07f28a5660690c77ef19 (diff) | |
download | plus-8076d645b7a4271b9b5f100f5ea881891fea7d7c.tar.gz plus-8076d645b7a4271b9b5f100f5ea881891fea7d7c.tar.bz2 plus-8076d645b7a4271b9b5f100f5ea881891fea7d7c.tar.xz plus-8076d645b7a4271b9b5f100f5ea881891fea7d7c.zip |
Remove ServerFeatures::haveNativeGuilds and ServerFeatures::haveChatChannels.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/serverfeatures.cpp | 10 | ||||
-rw-r--r-- | src/net/eathena/serverfeatures.h | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/src/net/eathena/serverfeatures.cpp b/src/net/eathena/serverfeatures.cpp index edd4498f9..95bdc764e 100644 --- a/src/net/eathena/serverfeatures.cpp +++ b/src/net/eathena/serverfeatures.cpp @@ -51,11 +51,6 @@ bool ServerFeatures::havePlayerStatusUpdate() const return serverVersion > 0; } -bool ServerFeatures::haveNativeGuilds() const -{ - return true; -} - bool ServerFeatures::haveIncompleteChatMessages() const { return false; @@ -71,11 +66,6 @@ bool ServerFeatures::haveLookSelection() const return serverVersion > 0; } -bool ServerFeatures::haveChatChannels() const -{ - return true; -} - bool ServerFeatures::haveServerIgnore() const { return true; diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h index 91d59345d..21725dfc5 100644 --- a/src/net/eathena/serverfeatures.h +++ b/src/net/eathena/serverfeatures.h @@ -40,16 +40,12 @@ class ServerFeatures final : public Net::ServerFeatures bool havePlayerStatusUpdate() const override final; - bool haveNativeGuilds() const override final A_CONST; - bool haveIncompleteChatMessages() const override final A_CONST; bool haveRaceSelection() const override final; bool haveLookSelection() const override final; - bool haveChatChannels() const override final A_CONST; - bool haveServerIgnore() const override final A_CONST; bool haveMove3() const override final; |