summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-16 18:13:20 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-16 18:13:20 +0300
commitb4a69fc693dcac28c84d9eee96f92d2bc56331ea (patch)
tree6774a684aa19dab71ba8f4ae93fcb88233707a1d /src/net/eathena
parent415d696feaa2981d555d1912f201b548c1f0ffad (diff)
downloadplus-b4a69fc693dcac28c84d9eee96f92d2bc56331ea.tar.gz
plus-b4a69fc693dcac28c84d9eee96f92d2bc56331ea.tar.bz2
plus-b4a69fc693dcac28c84d9eee96f92d2bc56331ea.tar.xz
plus-b4a69fc693dcac28c84d9eee96f92d2bc56331ea.zip
Add server feature haveChatChannels.
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/serverfeatures.cpp5
-rw-r--r--src/net/eathena/serverfeatures.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/serverfeatures.cpp b/src/net/eathena/serverfeatures.cpp
index 9cd8a5f22..c5b738828 100644
--- a/src/net/eathena/serverfeatures.cpp
+++ b/src/net/eathena/serverfeatures.cpp
@@ -87,4 +87,9 @@ bool ServerFeatures::haveLookSelection() const
return false;
}
+bool ServerFeatures::haveChatChannels() const
+{
+ return false;
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h
index 8ead8eff1..04a5ffc22 100644
--- a/src/net/eathena/serverfeatures.h
+++ b/src/net/eathena/serverfeatures.h
@@ -55,6 +55,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveRaceSelection() const override final;
bool haveLookSelection() const override final;
+
+ bool haveChatChannels() const override final;
};
} // namespace EAthena