summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsin.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-03 19:50:26 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-03 19:50:26 +0300
commitf26d3df5feef535d3eede09f581a5cbc08cae2a1 (patch)
tree79a7776b5d22fd34a1f7e105a941a22de9ef9176 /src/net/eathena/packetsin.inc
parent74e3ec3edcae04931238c2e6be93c60c087571e9 (diff)
downloadplus-f26d3df5feef535d3eede09f581a5cbc08cae2a1.tar.gz
plus-f26d3df5feef535d3eede09f581a5cbc08cae2a1.tar.bz2
plus-f26d3df5feef535d3eede09f581a5cbc08cae2a1.tar.xz
plus-f26d3df5feef535d3eede09f581a5cbc08cae2a1.zip
Separate being and monster hp packets.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r--src/net/eathena/packetsin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index 34821a5b6..cc925ffec 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -46,7 +46,7 @@ packet(SMSG_BEING_VIEW_EQUIPMENT, 0x02d7, -1, &BeingRecv::processBeing
packet(SMSG_BEING_MOVE, 0x007b, 60, &BeingRecv::processBeingMove, 1);
packet(SMSG_PARTY_INVITED, 0x00fe, 30, &PartyRecv::processPartyInvited, 1);
packet(SMSG_PARTY_SETTINGS, 0x0101, 6, &PartyRecv::processPartySettings, 1);
-packet(SMSG_PLAYER_HP, 0x0106, 10, &BeingRecv::processMonsterHp, 1);
+packet(SMSG_PLAYER_HP, 0x0106, 10, &BeingRecv::processBeingHp, 1);
// fake packets for add packet name
packet(SMSG_SELECT_CART, 0x0000, 0, nullptr, 0);
@@ -580,7 +580,7 @@ if (packetVersion >= 20100105)
}
// 20100126
-packet(SMSG_PLAYER_HP, 0x080e, 14, &BeingRecv::processMonsterHp, 20100126);
+packet(SMSG_PLAYER_HP, 0x080e, 14, &BeingRecv::processBeingHp, 20100126);
// 20100223
packet(SMSG_TRADE_ITEM_ADD, 0x080f, 20, &TradeRecv::processTradeItemAdd, 20100223);