diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-24 01:48:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-24 01:48:07 +0300 |
commit | 6a67f52f6b82bb8c6259eb0b9282ab543347b9ee (patch) | |
tree | bd0741506b3f69e98cdcaa99d2ccb40db86291d5 /src/net/eathena | |
parent | e22f6d0070ea2b0102caf3b738fba703606e6bd4 (diff) | |
download | mv-6a67f52f6b82bb8c6259eb0b9282ab543347b9ee.tar.gz mv-6a67f52f6b82bb8c6259eb0b9282ab543347b9ee.tar.bz2 mv-6a67f52f6b82bb8c6259eb0b9282ab543347b9ee.tar.xz mv-6a67f52f6b82bb8c6259eb0b9282ab543347b9ee.zip |
Remove unused pet handler methods and fields.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/pethandler.cpp | 17 | ||||
-rw-r--r-- | src/net/eathena/pethandler.h | 13 |
2 files changed, 6 insertions, 24 deletions
diff --git a/src/net/eathena/pethandler.cpp b/src/net/eathena/pethandler.cpp index 06e9985fe..8ae6a169b 100644 --- a/src/net/eathena/pethandler.cpp +++ b/src/net/eathena/pethandler.cpp @@ -39,8 +39,8 @@ PetHandler::PetHandler() petHandler = this; } -void PetHandler::move(const int petId A_UNUSED, - const int x, const int y) const +void PetHandler::move(const int x, + const int y) const { if (!serverFeatures->haveMovePet()) return; @@ -50,14 +50,7 @@ void PetHandler::move(const int petId A_UNUSED, outMsg.writeInt16(CAST_S16(y), "y"); } -void PetHandler::spawn(const Being *const being A_UNUSED, - const int petId A_UNUSED, - const int x A_UNUSED, const int y A_UNUSED) const -{ -} - -void PetHandler::emote(const uint8_t emoteId, - const int petId A_UNUSED) +void PetHandler::emote(const uint8_t emoteId) { createOutPacket(CMSG_PET_EMOTE); outMsg.writeInt8(emoteId, "emote id"); @@ -127,8 +120,4 @@ void PetHandler::setDirection(const unsigned char type) const "pet direction"); } -void PetHandler::startAi(const bool start A_UNUSED) const -{ -} - } // namespace EAthena diff --git a/src/net/eathena/pethandler.h b/src/net/eathena/pethandler.h index ab5eaded6..32ff49984 100644 --- a/src/net/eathena/pethandler.h +++ b/src/net/eathena/pethandler.h @@ -33,15 +33,10 @@ class PetHandler final : public Net::PetHandler A_DELETE_COPY(PetHandler) - void move(const int petId, - const int x, const int y) const override final; + void move(const int x, + const int y) const override final; - void spawn(const Being *const being, - const int petId, - const int x, const int y) const override final A_CONST; - - void emote(const uint8_t emoteId, - const int petId) override final; + void emote(const uint8_t emoteId) override final; void catchPet(const Being *const being) const override final; @@ -60,8 +55,6 @@ class PetHandler final : public Net::PetHandler void unequip() const override final; void setDirection(const unsigned char type) const override final; - - void startAi(const bool start) const override final A_CONST; }; } // namespace EAthena |