diff options
Diffstat (limited to 'src/net/eathena/battlegroundrecv.cpp')
-rw-r--r-- | src/net/eathena/battlegroundrecv.cpp | 9 |
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 |