diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-14 01:41:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-14 01:41:41 +0300 |
commit | 21ff910b7b30b1a515db24e890d3a7b443b2d859 (patch) | |
tree | a4550c89b26d652d9b718f56f6440ea946d04606 /src/net/eathena/petrecv.cpp | |
parent | 2822bd9efe74131a6f0614f8092db9c990a0e708 (diff) | |
download | plus-21ff910b7b30b1a515db24e890d3a7b443b2d859.tar.gz plus-21ff910b7b30b1a515db24e890d3a7b443b2d859.tar.bz2 plus-21ff910b7b30b1a515db24e890d3a7b443b2d859.tar.xz plus-21ff910b7b30b1a515db24e890d3a7b443b2d859.zip |
Add packet SMSG_PET_EVOLUTION_RESULT 0x09fc
Diffstat (limited to 'src/net/eathena/petrecv.cpp')
-rw-r--r-- | src/net/eathena/petrecv.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/petrecv.cpp b/src/net/eathena/petrecv.cpp index 6516186f1..344b388ac 100644 --- a/src/net/eathena/petrecv.cpp +++ b/src/net/eathena/petrecv.cpp @@ -180,4 +180,10 @@ void PetRecv::processPetCatchProcess(Net::MessageIn &msg A_UNUSED) NotifyManager::notify(NotifyTypes::PET_CATCH_PROCESS); } +void PetRecv::processPetEvolution(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readUInt8("result"); +} + } // namespace EAthena |