diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-28 20:35:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-28 20:35:00 +0300 |
commit | f0b804fbd8179c7514809f57777e48b0a8fe0bad (patch) | |
tree | d09580b514796eb03a8f8540674c451cbdea0b98 /src | |
parent | dfc18c6fb1f40e3ffab11e31e2ffaa16d8a208c3 (diff) | |
download | plus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.tar.gz plus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.tar.bz2 plus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.tar.xz plus-f0b804fbd8179c7514809f57777e48b0a8fe0bad.zip |
fix warnings again.
Diffstat (limited to 'src')
-rw-r--r-- | src/net/tmwa/pethandler.cpp | 4 |
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 |