summaryrefslogtreecommitdiff
path: root/src/net/tmwa/pethandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-28 20:35:00 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-28 20:35:00 +0300
commitf0b804fbd8179c7514809f57777e48b0a8fe0bad (patch)
treed09580b514796eb03a8f8540674c451cbdea0b98 /src/net/tmwa/pethandler.cpp
parentdfc18c6fb1f40e3ffab11e31e2ffaa16d8a208c3 (diff)
downloadplus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.tar.gz
plus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.tar.bz2
plus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.tar.xz
plus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.zip
fix warnings again.
Diffstat (limited to 'src/net/tmwa/pethandler.cpp')
-rw-r--r--src/net/tmwa/pethandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/pethandler.cpp b/src/net/tmwa/pethandler.cpp
index 33bd2cb3c..f3995bcde 100644
--- a/src/net/tmwa/pethandler.cpp
+++ b/src/net/tmwa/pethandler.cpp
@@ -71,8 +71,8 @@ void PetHandler::emote(const uint8_t emoteId, const int petId A_UNUSED)
if (mRandCounter > 10000)
mRandCounter = 1000;
- chatHandler->talk(strprintf("\302\202\302e%dz%d%g%d",
- static_cast<int>(emoteId), mRandCounter, tick_time), GENERAL_CHANNEL);
+ chatHandler->talk(strprintf("\302\202\302e%dz%d",
+ static_cast<int>(emoteId), mRandCounter), GENERAL_CHANNEL);
}
void PetHandler::catchPet(const Being *const being A_UNUSED) const