summaryrefslogtreecommitdiff
path: root/src/net/tmwa/beinghandler.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-04-02 20:35:41 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-04-02 20:35:41 +0200
commit31010d6d3ba6600860a9f6dd925ac3d8e3f2c830 (patch)
tree88e0c06f16f00e635860f1ecc7d65d8e0cf4d1de /src/net/tmwa/beinghandler.cpp
parentbbb4c1c61863b9032af2291bff20814733995391 (diff)
parent9015268746ed9052a9dc83839b2834b5feeab166 (diff)
downloadmana-31010d6d3ba6600860a9f6dd925ac3d8e3f2c830.tar.gz
mana-31010d6d3ba6600860a9f6dd925ac3d8e3f2c830.tar.bz2
mana-31010d6d3ba6600860a9f6dd925ac3d8e3f2c830.tar.xz
mana-31010d6d3ba6600860a9f6dd925ac3d8e3f2c830.zip
Merge branch '0.6'
Diffstat (limited to 'src/net/tmwa/beinghandler.cpp')
-rw-r--r--src/net/tmwa/beinghandler.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp
index c94e08df..b7d84685 100644
--- a/src/net/tmwa/beinghandler.cpp
+++ b/src/net/tmwa/beinghandler.cpp
@@ -427,9 +427,8 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
if (player_relations.hasPermission(dstBeing, PlayerRelation::EMOTE))
{
- const int fx = EmoteDB::get(msg.readInt8())->effect;
- //TODO: figure out why the -1 is needed
- effectManager->trigger(fx - 1, dstBeing);
+ const int fx = EmoteDB::get(msg.readInt8() - 1)->effect;
+ effectManager->trigger(fx, dstBeing);
}
break;