diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-07 00:25:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-07 00:25:31 +0300 |
commit | 615445b73ce4378a9d62e64d9f90cefdb26979c7 (patch) | |
tree | 0f25c1f9a3773846b7fe24e80351a027a89a41bb /src/net/tmwa | |
parent | 8bb1132c68330d892a6ca78b58daa5cbf7dd6c01 (diff) | |
download | plus-615445b73ce4378a9d62e64d9f90cefdb26979c7.tar.gz plus-615445b73ce4378a9d62e64d9f90cefdb26979c7.tar.bz2 plus-615445b73ce4378a9d62e64d9f90cefdb26979c7.tar.xz plus-615445b73ce4378a9d62e64d9f90cefdb26979c7.zip |
Add server feature haveMail.
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 0137e26a4..22ca73f2b 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -273,4 +273,9 @@ bool ServerFeatures::haveMultyStatusUp() const return false; } +bool ServerFeatures::haveMail() const +{ + return false; +} + } // namespace TmwAthena diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index bf487332f..f4031a7ea 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -129,6 +129,8 @@ class ServerFeatures final : public Net::ServerFeatures bool haveSecureTrades() const override final A_CONST; bool haveMultyStatusUp() const override final A_CONST; + + bool haveMail() const override final A_CONST; }; } // namespace TmwAthena |