summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/serverfeatures.cpp5
-rw-r--r--src/net/tmwa/serverfeatures.h2
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