diff options
Diffstat (limited to 'src/net')
-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 |