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.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index ad30750a5..3fb487a3a 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -958,4 +958,11 @@ void ChatHandler::setChatRoomOptions(const int limit,
outMsg.writeString(title, sz, "title");
}
+void ChatHandler::setChatRoomOwner(const std::string &nick) const
+{
+ createOutPacket(CMSG_SET_CHAT_ROOM_OWNER);
+ outMsg.writeInt32(0, "role (unused)");
+ outMsg.writeString(nick, 24, "nick");
+}
+
} // namespace EAthena