diff options
Diffstat (limited to 'src/net/eathena/itemrecv.cpp')
-rw-r--r-- | src/net/eathena/itemrecv.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/itemrecv.cpp b/src/net/eathena/itemrecv.cpp index 6fbabb675..96c4245c8 100644 --- a/src/net/eathena/itemrecv.cpp +++ b/src/net/eathena/itemrecv.cpp @@ -32,6 +32,8 @@ #include "debug.h" +extern bool packets_zero; + namespace EAthena { @@ -49,6 +51,11 @@ void ItemRecv::processItemDropped(Net::MessageIn &msg) const int subX = CAST_S32(msg.readInt8("subx")); const int subY = CAST_S32(msg.readInt8("suby")); const int amount = msg.readInt16("count"); + if (packets_zero) + { + msg.readUInt8("show drop effect"); + msg.readInt16("show effect mode"); + } if (actorManager != nullptr) { |