summaryrefslogtreecommitdiff
path: root/src/net/eathena/battlegroundrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-03 19:30:49 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-03 19:30:49 +0300
commit74e3ec3edcae04931238c2e6be93c60c087571e9 (patch)
tree5dcdb695a6d4ab4cd67a122cfe3c0936436009b3 /src/net/eathena/battlegroundrecv.cpp
parent36210fbf89d30c94159780a65bd6407c94b72643 (diff)
downloadplus-74e3ec3edcae04931238c2e6be93c60c087571e9.tar.gz
plus-74e3ec3edcae04931238c2e6be93c60c087571e9.tar.bz2
plus-74e3ec3edcae04931238c2e6be93c60c087571e9.tar.xz
plus-74e3ec3edcae04931238c2e6be93c60c087571e9.zip
Add some missing packet id, add packet SMSG_BATTLE_UPDATE_HP 0x02e0.
Diffstat (limited to 'src/net/eathena/battlegroundrecv.cpp')
-rw-r--r--src/net/eathena/battlegroundrecv.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/battlegroundrecv.cpp b/src/net/eathena/battlegroundrecv.cpp
index eced58928..dc01547b2 100644
--- a/src/net/eathena/battlegroundrecv.cpp
+++ b/src/net/eathena/battlegroundrecv.cpp
@@ -103,4 +103,13 @@ void BattleGroundRecv::processBattleJoined(Net::MessageIn &msg)
msg.readInt32("position");
}
+void BattleGroundRecv::processBattleUpdateHp(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ msg.readBeingId("account id");
+ msg.readString(24, "name");
+ msg.readInt16("hp");
+ msg.readInt16("max hp");
+}
+
} // namespace EAthena