diff options
Diffstat (limited to 'src/net/eathena/inventoryrecv.cpp')
-rw-r--r-- | src/net/eathena/inventoryrecv.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryrecv.cpp b/src/net/eathena/inventoryrecv.cpp index a863a0229..42a689b12 100644 --- a/src/net/eathena/inventoryrecv.cpp +++ b/src/net/eathena/inventoryrecv.cpp @@ -1656,4 +1656,20 @@ void InventoryRecv::processShowItemPreview1(Net::MessageIn &msg) } } +void InventoryRecv::processShowItemPreview2(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readInt16("inv index"); + msg.readUInt8("is damaged"); + msg.readInt16("refine"); + for (int f = 0; f < maxCards; f++) + msg.readItemId("card"); + for (int f = 0; f < 5; f ++) + { + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); + } +} + } // namespace EAthena |