diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-03-07 12:28:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-03-07 12:28:38 +0300 |
commit | a7258e25d06f90b10dee8281a65d239c89e5094c (patch) | |
tree | ec7ff20bb141da153453493f03fea3744537b19f /src/net/tmwa/pethandler.h | |
parent | 7bbd2004db69dcf456a606a350d315e2fefa7d4f (diff) | |
download | manaplus-a7258e25d06f90b10dee8281a65d239c89e5094c.tar.gz manaplus-a7258e25d06f90b10dee8281a65d239c89e5094c.tar.bz2 manaplus-a7258e25d06f90b10dee8281a65d239c89e5094c.tar.xz manaplus-a7258e25d06f90b10dee8281a65d239c89e5094c.zip |
fix emote command in crazy moves A.
Diffstat (limited to 'src/net/tmwa/pethandler.h')
-rw-r--r-- | src/net/tmwa/pethandler.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net/tmwa/pethandler.h b/src/net/tmwa/pethandler.h index 30eff59b8..bcfa6b1a6 100644 --- a/src/net/tmwa/pethandler.h +++ b/src/net/tmwa/pethandler.h @@ -47,7 +47,10 @@ class PetHandler final : public MessageHandler, public Net::PetHandler const int x, const int y) const override final; void emote(const uint8_t emoteId, - const int petId) const override final; + const int petId) override final; + + protected: + int mRandCounter; }; } // namespace TmwAthena |