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 461c25e8d..2fb96f781 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -114,6 +114,11 @@ bool ServerFeatures::haveAccountOtherGender() const
return false;
}
+bool ServerFeatures::haveCharOtherGender() const
+{
+ return false;
+}
+
bool ServerFeatures::haveMonsterAttackRange() const
{
return tmwServerVersion >= 0x0f0513;
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index 582bea20b..20c09bc47 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -66,6 +66,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveAccountOtherGender() const override final;
+ bool haveCharOtherGender() const override final;
+
bool haveMonsterAttackRange() const override final;
bool haveMonsterName() const override final;