diff options
author | Ira Rice <irarice@gmail.com> | 2008-12-03 12:30:11 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-12-03 12:30:11 -0700 |
commit | 68926c15e6d31c4af90bce9ec57aa39f839d7d6b (patch) | |
tree | 18fc1553fabfe16022950facf16422afd191fa01 /src/net/beinghandler.cpp | |
parent | 414afae670d09e34a4b5c0528c9ca6c3abb03124 (diff) | |
download | mana-68926c15e6d31c4af90bce9ec57aa39f839d7d6b.tar.gz mana-68926c15e6d31c4af90bce9ec57aa39f839d7d6b.tar.bz2 mana-68926c15e6d31c4af90bce9ec57aa39f839d7d6b.tar.xz mana-68926c15e6d31c4af90bce9ec57aa39f839d7d6b.zip |
Add an effects manager (patch by Kage Jittai)
NOTE: This patch demonstrates the need to fix pixel coordinates in the
eAthena client. Bjorn did the movement patch in the TMWClient, however,
I still haven't got that fully working with the merges. It's likely that
a clone will be developed to tackle this problem.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/net/beinghandler.cpp')
-rw-r--r-- | src/net/beinghandler.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net/beinghandler.cpp b/src/net/beinghandler.cpp index 8a7e61a1..b016b5cf 100644 --- a/src/net/beinghandler.cpp +++ b/src/net/beinghandler.cpp @@ -28,6 +28,7 @@ #include "../being.h" #include "../beingmanager.h" +#include "../effectmanager.h" #include "../game.h" #include "../localplayer.h" #include "../log.h" @@ -269,8 +270,10 @@ void BeingHandler::handleMessage(MessageIn *msg) break; int effectType = msg->readInt32(); + Being* being = beingManager->findBeing(id); - beingManager->findBeing(id)->triggerEffect(effectType); + effectManager->trigger(effectType, (int) being->getPixelX(), + (int) being->getPixelY()); break; } |