summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-11 14:39:29 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-11 14:39:29 +0300
commitff383a3f0658aeb016a5c5bcde01fc7edd2f8c33 (patch)
tree4956a3ef5ee256f788d5e15ec593e2e4543371a4 /src/net/eathena/skillhandler.cpp
parentc28671db8583dc66e7e3c3b1428c870f5222dbcc (diff)
downloadManaVerse-ff383a3f0658aeb016a5c5bcde01fc7edd2f8c33.tar.gz
ManaVerse-ff383a3f0658aeb016a5c5bcde01fc7edd2f8c33.tar.bz2
ManaVerse-ff383a3f0658aeb016a5c5bcde01fc7edd2f8c33.tar.xz
ManaVerse-ff383a3f0658aeb016a5c5bcde01fc7edd2f8c33.zip
eathena: add partial support for packet SMSG_SKILL_UNIT_UPDATE 0x01ac.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r--src/net/eathena/skillhandler.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp
index abe33cda1..1316c4dda 100644
--- a/src/net/eathena/skillhandler.cpp
+++ b/src/net/eathena/skillhandler.cpp
@@ -65,6 +65,7 @@ SkillHandler::SkillHandler() :
SMSG_SKILL_MEMO_MESSAGE,
SMSG_PLAYER_SKILL_PRODUCE_MIX_LIST,
SMSG_PLAYER_SKILL_PRODUCE_EFFECT,
+ SMSG_SKILL_UNIT_UPDATE,
0
};
handledMessages = _messages;
@@ -127,6 +128,10 @@ void SkillHandler::handleMessage(Net::MessageIn &msg)
processSkillProduceEffect(msg);
break;
+ case SMSG_SKILL_UNIT_UPDATE:
+ processSkillUnitUpdate(msg);
+ break;
+
default:
break;
}
@@ -429,4 +434,11 @@ void SkillHandler::processSkillProduceEffect(Net::MessageIn &msg)
msg.readInt16("item id");
}
+void SkillHandler::processSkillUnitUpdate(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt32("being id");
+}
+
} // namespace EAthena