diff options
Diffstat (limited to 'src/net/ea/beinghandler.cpp')
-rw-r--r-- | src/net/ea/beinghandler.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/net/ea/beinghandler.cpp b/src/net/ea/beinghandler.cpp index db3db9dd4..ea668589c 100644 --- a/src/net/ea/beinghandler.cpp +++ b/src/net/ea/beinghandler.cpp @@ -58,8 +58,6 @@ namespace Ea { -const int EMOTION_TIME = 500; /**< Duration of emotion icon */ - BeingHandler::BeingHandler(const bool enableSync) : mSync(enableSync), mSpawnId(0), @@ -578,7 +576,7 @@ void BeingHandler::processBeingEmotion(Net::MessageIn &msg) const const unsigned char emote = msg.readInt8(); if (emote) { - dstBeing->setEmote(emote, EMOTION_TIME); + dstBeing->setEmote(emote, 0); player_node->imitateEmote(dstBeing, emote); } } |