summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r--src/net/eathena/beinghandler.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index d53848654..31380aa0d 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -106,4 +106,12 @@ void BeingHandler::requestNameByCharId(const int id) const
outMsg.writeInt32(id, "character id");
}
+void BeingHandler::requestCheckName(const std::string &name) const
+{
+ if (packetVersion < 20140423)
+ return;
+ createOutPacket(CMSG_CHECK_NAME);
+ outMsg.writeString(name, 24, "name");
+}
+
} // namespace EAthena