diff options
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 4c3340836..37f63fbcb 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -646,4 +646,13 @@ void ChatHandler::processJoinChannel(Net::MessageIn &msg) } } +void ChatHandler::partChannel(const std::string &channel) +{ + if (serverFeatures->haveJoinChannel()) + { + createOutPacket(CMSG_CHAT_PART_CHANNEL); + outMsg.writeString(channel, 24, "channel name"); + } +} + } // namespace EAthena |