diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-09 17:40:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-09 17:40:06 +0300 |
commit | 8d519af0d6a5a7c3477e684269172b8163495a85 (patch) | |
tree | 027e57ee17fc5a663467358d0408b30c662c416e /src/net/eathena/packetsin.inc | |
parent | 1da80a3312ae865ed5d84271fc0cf53b82d87f15 (diff) | |
download | plus-8d519af0d6a5a7c3477e684269172b8163495a85.tar.gz plus-8d519af0d6a5a7c3477e684269172b8163495a85.tar.bz2 plus-8d519af0d6a5a7c3477e684269172b8163495a85.tar.xz plus-8d519af0d6a5a7c3477e684269172b8163495a85.zip |
Move processPlayerInventoryRemove from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index eeb955fef..7d463d043 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -310,7 +310,7 @@ packet(SMSG_PLAYER_IDENTIFY_LIST, 0x0177, -1, &InventoryRecv::processP packet(SMSG_PLAYER_INSERT_CARD, 0x017d, 7, &InventoryRecv::processPlayerInsertCard); packet(SMSG_PLAYER_INVENTORY, 0x0991, -1, &InventoryRecv::processPlayerInventory); packet(SMSG_PLAYER_INVENTORY_ADD, 0x0990, 31, &InventoryRecv::processPlayerInventoryAdd); -packet(SMSG_PLAYER_INVENTORY_REMOVE, 0x00af, 6, &Ea::InventoryRecv::processPlayerInventoryRemove); +packet(SMSG_PLAYER_INVENTORY_REMOVE, 0x00af, 6, &InventoryRecv::processPlayerInventoryRemove); packet(SMSG_PLAYER_INVENTORY_REMOVE2, 0x07fa, 8, &InventoryRecv::processPlayerInventoryRemove2); packet(SMSG_PLAYER_INVENTORY_USE, 0x01c8, 13, &Ea::InventoryRecv::processPlayerInventoryUse); packet(SMSG_PLAYER_ITEM_RENTAL_EXPIRED, 0x0299, 6, &InventoryRecv::processPlayerItemRentalExpired); |