diff options
Diffstat (limited to 'src/net/eathena/mail2handler.cpp')
-rw-r--r-- | src/net/eathena/mail2handler.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/mail2handler.cpp b/src/net/eathena/mail2handler.cpp index bf6f178fb..52360d7b7 100644 --- a/src/net/eathena/mail2handler.cpp +++ b/src/net/eathena/mail2handler.cpp @@ -242,4 +242,15 @@ void Mail2Handler::cancelWriteMail() const createOutPacket(CMSG_MAIL2_CANCEL_WRITE_MAIL); } +void Mail2Handler::requestCheckName(const std::string &name) const +{ + if (packetVersion < 20140423 || + serverVersion < 19) + { + return; + } + createOutPacket(CMSG_MAIL2_CHECK_NAME); + outMsg.writeString(name, 24, "name"); +} + } // namespace EAthena |