diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/serverfeatures.cpp | 5 | ||||
-rw-r--r-- | src/net/tmwa/serverfeatures.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp index b1556fbdf..3ab0dc600 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -99,6 +99,11 @@ bool ServerFeatures::haveSpecialChatChannels() const return serverVersion >= 8; } +bool ServerFeatures::haveChatChannels() const +{ + return false; +} + bool ServerFeatures::haveServerIgnore() const { return tmwServerVersion == 0; diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index 8dc52bc15..0194173b7 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -60,6 +60,8 @@ class ServerFeatures final : public Net::ServerFeatures bool haveSpecialChatChannels() const override final; + bool haveChatChannels() const override final; + bool haveServerIgnore() const override final; bool haveMove3() const override final; |