From 752c00b3e14478ebfc243938ed0bfd3af0a05f58 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 22 Feb 2015 15:00:14 +0300 Subject: eathena: add packet CMSG_PET_MOVE_TO 0x0b11. --- src/net/eathena/pethandler.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/net/eathena/pethandler.cpp') diff --git a/src/net/eathena/pethandler.cpp b/src/net/eathena/pethandler.cpp index 6d1167198..6218da7a1 100644 --- a/src/net/eathena/pethandler.cpp +++ b/src/net/eathena/pethandler.cpp @@ -36,6 +36,7 @@ #include "net/chathandler.h" #include "net/inventoryhandler.h" +#include "net/serverfeatures.h" #include "net/ea/eaprotocol.h" @@ -109,8 +110,14 @@ void PetHandler::handleMessage(Net::MessageIn &msg) } void PetHandler::move(const int petId A_UNUSED, - const int x A_UNUSED, const int y A_UNUSED) const + const int x, const int y) const { + if (!serverFeatures->haveMovePet()) + return; + createOutPacket(CMSG_PET_MOVE_TO); + outMsg.writeInt32(0, "pet id"); + outMsg.writeInt16(x, "x"); + outMsg.writeInt16(y, "y"); } void PetHandler::spawn(const Being *const being A_UNUSED, -- cgit v1.2.3-60-g2f50