diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-04-04 16:41:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-04-04 16:41:09 +0300 |
commit | 05a196194b8270c1ae2e63f8ae31f8a492022388 (patch) | |
tree | a00c9c9a009d562db1a95b3f8f77428df0169a21 /src/net/eathena/beinghandler.h | |
parent | 6f06cd42b8e56aaae2be853a31d73d0115a39c2a (diff) | |
download | plus-05a196194b8270c1ae2e63f8ae31f8a492022388.tar.gz plus-05a196194b8270c1ae2e63f8ae31f8a492022388.tar.bz2 plus-05a196194b8270c1ae2e63f8ae31f8a492022388.tar.xz plus-05a196194b8270c1ae2e63f8ae31f8a492022388.zip |
Show unimplimented packet debug message on each unsupported packets parameters.
Diffstat (limited to 'src/net/eathena/beinghandler.h')
-rw-r--r-- | src/net/eathena/beinghandler.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/net/eathena/beinghandler.h b/src/net/eathena/beinghandler.h index 78f12af80..f6fb1df78 100644 --- a/src/net/eathena/beinghandler.h +++ b/src/net/eathena/beinghandler.h @@ -47,7 +47,8 @@ class BeingHandler final : public MessageHandler, public Ea::BeingHandler void requestRanks(const Rank::Rank rank) const override final; protected: - static Being *createBeing2(const int id, + static Being *createBeing2(Net::MessageIn &msg, + const int id, const int16_t job, const BeingType::BeingType beingType); @@ -81,7 +82,8 @@ class BeingHandler final : public MessageHandler, public Ea::BeingHandler static void processBeingChangeDirection(Net::MessageIn &msg); - static void processBeingChangeLookContinue(Being *const dstBeing, + static void processBeingChangeLookContinue(Net::MessageIn &msg, + Being *const dstBeing, const uint8_t type, const int id, const int id2); @@ -92,7 +94,8 @@ class BeingHandler final : public MessageHandler, public Ea::BeingHandler static void processBeingSoundEffect(Net::MessageIn &msg); - static void applyPlayerAction(Being *const being, + static void applyPlayerAction(Net::MessageIn &msg, + Being *const being, const uint8_t type); void viewPlayerEquipment(const Being *const being); |