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.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 31380aa0d..94e58457b 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -108,8 +108,11 @@ void BeingHandler::requestNameByCharId(const int id) const
void BeingHandler::requestCheckName(const std::string &name) const
{
- if (packetVersion < 20140423)
+ if (packetVersion < 20140423 ||
+ serverVersion < 19)
+ {
return;
+ }
createOutPacket(CMSG_CHECK_NAME);
outMsg.writeString(name, 24, "name");
}