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 7068638fa..0f107e314 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -169,4 +169,9 @@ bool ServerFeatures::haveNpcGender() const
return serverVersion > 0;
}
+bool ServerFeatures::haveJoinChannel() const
+{
+ return false;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index 7a449b268..c00bd478f 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -87,6 +87,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveMapServerVersion() const override final;
bool haveNpcGender() const override final;
+
+ bool haveJoinChannel() const override final;
};
} // namespace TmwAthena