diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-11 12:37:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-11 12:37:40 +0300 |
commit | e0a6ff515e3332b2c49ed964da470c6919e65b86 (patch) | |
tree | 28b10c840b47b0d024c78a7bb7e393f367fa3829 /src | |
parent | 71d50c2de2cfe8c9d5b1653596eae90761c8a9d6 (diff) | |
download | plus-e0a6ff515e3332b2c49ed964da470c6919e65b86.tar.gz plus-e0a6ff515e3332b2c49ed964da470c6919e65b86.tar.bz2 plus-e0a6ff515e3332b2c49ed964da470c6919e65b86.tar.xz plus-e0a6ff515e3332b2c49ed964da470c6919e65b86.zip |
eathena: add packet comment in pethandler.
Diffstat (limited to 'src')
-rw-r--r-- | src/net/eathena/pethandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/pethandler.cpp b/src/net/eathena/pethandler.cpp index 1b8f77881..bf4939345 100644 --- a/src/net/eathena/pethandler.cpp +++ b/src/net/eathena/pethandler.cpp @@ -82,7 +82,7 @@ void PetHandler::catchPet(const Being *const being) const return; MessageOut outMsg(CMSG_PET_CATCH); - outMsg.writeInt32(being->getId()); + outMsg.writeInt32(being->getId(), "monster id"); } } // namespace EAthena |