diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-16 18:23:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-16 18:23:33 +0300 |
commit | a143251ee20a65b43c6d85d9f15bddf06dbc8804 (patch) | |
tree | 6c0168d5fa696b29f78d275b4524fc11e43be2ed /src/net/eathena | |
parent | b4a69fc693dcac28c84d9eee96f92d2bc56331ea (diff) | |
download | manaplus-a143251ee20a65b43c6d85d9f15bddf06dbc8804.tar.gz manaplus-a143251ee20a65b43c6d85d9f15bddf06dbc8804.tar.bz2 manaplus-a143251ee20a65b43c6d85d9f15bddf06dbc8804.tar.xz manaplus-a143251ee20a65b43c6d85d9f15bddf06dbc8804.zip |
Add server feature haveServerIgnore.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/serverfeatures.cpp | 5 | ||||
-rw-r--r-- | src/net/eathena/serverfeatures.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/serverfeatures.cpp b/src/net/eathena/serverfeatures.cpp index c5b738828..4cd9551cc 100644 --- a/src/net/eathena/serverfeatures.cpp +++ b/src/net/eathena/serverfeatures.cpp @@ -92,4 +92,9 @@ bool ServerFeatures::haveChatChannels() const return false; } +bool ServerFeatures::haveServerIgnore() const +{ + return true; +} + } // namespace EAthena diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h index 04a5ffc22..4fd393a95 100644 --- a/src/net/eathena/serverfeatures.h +++ b/src/net/eathena/serverfeatures.h @@ -57,6 +57,8 @@ class ServerFeatures final : public Net::ServerFeatures bool haveLookSelection() const override final; bool haveChatChannels() const override final; + + bool haveServerIgnore() const override final; }; } // namespace EAthena |