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 498d19249..31b7a16ed 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -74,4 +74,9 @@ bool ServerFeatures::haveNativeGuilds() const return tmwServerVersion <= 0; } +bool ServerFeatures::haveIncompleteChatMessages() const +{ + return tmwServerVersion > 0; +} + } // namespace TmwAthena diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index 3aba539dd..916fbf3db 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -49,6 +49,8 @@ class ServerFeatures final : public Net::ServerFeatures bool haveBrokenPlayerAttackDistance() const override final; bool haveNativeGuilds() const override final; + + bool haveIncompleteChatMessages() const override final; }; } // namespace TmwAthena |