summaryrefslogtreecommitdiff
path: root/src/net/eathena/chathandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r--src/net/eathena/chathandler.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 3fb487a3a..f0587602d 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -965,4 +965,10 @@ void ChatHandler::setChatRoomOwner(const std::string &nick) const
outMsg.writeString(nick, 24, "nick");
}
+void ChatHandler::kickFromChatRoom(const std::string &nick) const
+{
+ createOutPacket(CMSG_KICK_FROM_CHAT_ROOM);
+ outMsg.writeString(nick, 24, "nick");
+}
+
} // namespace EAthena