diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-28 18:28:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-28 18:28:01 +0300 |
commit | 31a4e17565b91b62fec057c10d3903310526c824 (patch) | |
tree | bb8d9c51ee9045074f5ef8ed7fb7fe95ad70fe91 /src/net | |
parent | a204d2b11e6a4b620877ab6c5b80a818eaa7d476 (diff) | |
download | plus-31a4e17565b91b62fec057c10d3903310526c824.tar.gz plus-31a4e17565b91b62fec057c10d3903310526c824.tar.bz2 plus-31a4e17565b91b62fec057c10d3903310526c824.tar.xz plus-31a4e17565b91b62fec057c10d3903310526c824.zip |
Impliment actual change direction actions from pet commands.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/tmwa/pethandler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net/tmwa/pethandler.cpp b/src/net/tmwa/pethandler.cpp index 079caae37..982f3a861 100644 --- a/src/net/tmwa/pethandler.cpp +++ b/src/net/tmwa/pethandler.cpp @@ -107,6 +107,8 @@ void PetHandler::unequip() const void PetHandler::setDirection(const BeingDirection::Type type) const { + chatHandler->talk(strprintf("\302\202\302d%d", + static_cast<int>(type)), GENERAL_CHANNEL); } } // namespace TmwAthena |