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/playerhandler.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/playerhandler.h')
-rw-r--r-- | src/net/playerhandler.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net/playerhandler.h b/src/net/playerhandler.h index 10eac7462..2cdfdf062 100644 --- a/src/net/playerhandler.h +++ b/src/net/playerhandler.h @@ -27,6 +27,8 @@ #include "enums/being/beingaction.h" +#include "net/messagein.h" + namespace Net { @@ -95,7 +97,8 @@ class PlayerHandler notfinal virtual void setViewEquipment(const bool allow) const = 0; - virtual void setStat(const int type, + virtual void setStat(Net::MessageIn &msg, + const int type, const int base, const int mod, const bool notify) const = 0; |