summaryrefslogtreecommitdiff
path: root/src/net/ea/beinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-05 13:17:59 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-06 01:18:57 +0300
commit256d936b71d500fc14ee52c7f55959fc65b289ac (patch)
tree3ea681387225bfa5c94e251d86ba48ae5afbfb18 /src/net/ea/beinghandler.cpp
parent07d993ed7cfa78bc5316bfb5b3ab27158925326a (diff)
downloadplus-256d936b71d500fc14ee52c7f55959fc65b289ac.tar.gz
plus-256d936b71d500fc14ee52c7f55959fc65b289ac.tar.bz2
plus-256d936b71d500fc14ee52c7f55959fc65b289ac.tar.xz
plus-256d936b71d500fc14ee52c7f55959fc65b289ac.zip
Move processBeingStatusChange from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/ea/beinghandler.cpp')
-rw-r--r--src/net/ea/beinghandler.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/net/ea/beinghandler.cpp b/src/net/ea/beinghandler.cpp
index 606831cc3..3da2ffd02 100644
--- a/src/net/ea/beinghandler.cpp
+++ b/src/net/ea/beinghandler.cpp
@@ -581,26 +581,6 @@ void BeingHandler::processPlaterStatusChange(Net::MessageIn &msg) const
BLOCK_END("BeingHandler::processPlayerStop")
}
-void BeingHandler::processBeingStatusChange(Net::MessageIn &msg) const
-{
- BLOCK_START("BeingHandler::processBeingStatusChange")
- if (!actorManager)
- {
- BLOCK_END("BeingHandler::processBeingStatusChange")
- return;
- }
-
- // Status change
- const uint16_t status = msg.readInt16("status");
- const int id = msg.readInt32("being id");
- const bool flag = msg.readUInt8("flag: 0: stop, 1: start");
-
- Being *const dstBeing = actorManager->findBeing(id);
- if (dstBeing)
- dstBeing->setStatusEffect(status, flag);
- BLOCK_END("BeingHandler::processBeingStatusChange")
-}
-
void BeingHandler::processSkillNoDamage(Net::MessageIn &msg) const
{
msg.readInt16("skill id");