diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-06 15:31:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-06 15:31:20 +0300 |
commit | 382598c07ffb3c64998a8e42c6a245711e86a419 (patch) | |
tree | 385a835bf3f5d1fc6e6a77814892d536c1fa7624 /src/net/eathena/skillhandler.cpp | |
parent | 008424242578ca993a03b911a3c737e1faa6141e (diff) | |
download | plus-382598c07ffb3c64998a8e42c6a245711e86a419.tar.gz plus-382598c07ffb3c64998a8e42c6a245711e86a419.tar.bz2 plus-382598c07ffb3c64998a8e42c6a245711e86a419.tar.xz plus-382598c07ffb3c64998a8e42c6a245711e86a419.zip |
Impliment packet CMSG_PK_RANKS 0x0237.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r-- | src/net/eathena/skillhandler.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp index f6e1a52b0..5cc6317a2 100644 --- a/src/net/eathena/skillhandler.cpp +++ b/src/net/eathena/skillhandler.cpp @@ -93,4 +93,12 @@ void SkillHandler::getBlacksmithRanks() const } } +void SkillHandler::getPkRanks() const +{ + if (packetVersion >= 20050530) + { + createOutPacket(CMSG_PK_RANKS); + } +} + } // namespace EAthena |