diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/net/eathena/packetsout.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index f16855838..f7a31c24b 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -1554,6 +1554,11 @@ if (packetVersion == 20151001) packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest); } +if (packetVersion >= 20151001) +{ + packet(CMSG_CHAR_CREATE, 0x0a39, 36, chr->parse_char_create_new_char); +} + // 20151029 if (packetVersion == 20151029) { @@ -1588,11 +1593,6 @@ if (packetVersion == 20151029) packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest); } -if (packetVersion >= 20151029) -{ - packet(CMSG_CHAR_CREATE, 0x0a39, 36, chr->parse_char_create_new_char); -} - // 20151104 if (packetVersion == 20151104) { |