diff options
Diffstat (limited to 'src/net')
-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 |