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.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 69e6eae9a..5e1a0679e 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -329,4 +329,12 @@ void ChatHandler::processWhisper(Net::MessageIn &msg) const
processWhisperContinue(nick, msg.readString(chatMsgLength, "message"));
}
+void ChatHandler::processWhisperResponse(Net::MessageIn &msg)
+{
+ BLOCK_START("ChatHandler::processWhisperResponse")
+
+ const uint8_t type = msg.readUInt8("response");
+ processWhisperResponseContinue(type);
+}
+
} // namespace EAthena