diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-05 12:55:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 01:18:57 +0300 |
commit | 946d6980c3ca3c7b7f6e50616e2e366c9adcae11 (patch) | |
tree | 9be71af99944b8056e97d83801c66222cb4dd834 /src/net/tmwa/beinghandler.cpp | |
parent | 617feef91574c9ad6dc6dcddf910566f394c9981 (diff) | |
download | plus-946d6980c3ca3c7b7f6e50616e2e366c9adcae11.tar.gz plus-946d6980c3ca3c7b7f6e50616e2e366c9adcae11.tar.bz2 plus-946d6980c3ca3c7b7f6e50616e2e366c9adcae11.tar.xz plus-946d6980c3ca3c7b7f6e50616e2e366c9adcae11.zip |
Move processSkillCasting from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/tmwa/beinghandler.cpp')
-rw-r--r-- | src/net/tmwa/beinghandler.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp index 1d1c5ef11..af71491d3 100644 --- a/src/net/tmwa/beinghandler.cpp +++ b/src/net/tmwa/beinghandler.cpp @@ -203,7 +203,7 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) break; case SMSG_SKILL_CASTING: - processSkilCasting(msg); + processSkillCasting(msg); break; case SMSG_SKILL_CAST_CANCEL: @@ -988,4 +988,15 @@ void BeingHandler::processBeingSpawn(Net::MessageIn &msg) BLOCK_END("BeingHandler::processBeingSpawn") } +void BeingHandler::processSkillCasting(Net::MessageIn &msg) const +{ + msg.readInt32("src id"); + msg.readInt32("dst id"); + msg.readInt16("dst x"); + msg.readInt16("dst y"); + msg.readInt16("skill num"); + msg.readInt32("skill get p1"); + msg.readInt32("cast time"); +} + } // namespace TmwAthena |