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 94e3beb7e..d6f785915 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -283,4 +283,9 @@ bool ServerFeatures::haveServerPets() const return false; } +bool ServerFeatures::haveFamily() const +{ + return false; +} + } // namespace TmwAthena diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index 41e64cd39..9ce160ac1 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -133,6 +133,8 @@ class ServerFeatures final : public Net::ServerFeatures bool haveMail() const override final A_CONST; bool haveServerPets() const override final A_CONST; + + bool haveFamily() const override final A_CONST; }; } // namespace TmwAthena |