diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-12 18:54:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-12 18:54:54 +0300 |
commit | 563bb83f0e5380b6be9819456246f0f2901f186c (patch) | |
tree | d3afa8be8f6d11c6acc6eec5e274e2468a40617b /src/net/tmwa/chathandler.cpp | |
parent | ff887f7a418b392431b6f2a0408d20cf1ee5cf07 (diff) | |
download | plus-563bb83f0e5380b6be9819456246f0f2901f186c.tar.gz plus-563bb83f0e5380b6be9819456246f0f2901f186c.tar.bz2 plus-563bb83f0e5380b6be9819456246f0f2901f186c.tar.xz plus-563bb83f0e5380b6be9819456246f0f2901f186c.zip |
Rename server feature haveChatChannels into haveSpecialChatChannels.
Diffstat (limited to 'src/net/tmwa/chathandler.cpp')
-rw-r--r-- | src/net/tmwa/chathandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp index fde774670..051443318 100644 --- a/src/net/tmwa/chathandler.cpp +++ b/src/net/tmwa/chathandler.cpp @@ -126,7 +126,7 @@ void ChatHandler::talk(const std::string &restrict text, const std::string mes = std::string(localPlayer->getName()).append( " : ").append(text); - if (serverFeatures->haveChatChannels() && channel.size() == 3) + if (serverFeatures->haveSpecialChatChannels() && channel.size() == 3) { createOutPacket(CMSG_CHAT_MESSAGE2); // Added + 1 in order to let eAthena parse admin commands correctly |