summaryrefslogtreecommitdiff
path: root/src/net/tmwa/itemhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/itemhandler.cpp')
-rw-r--r--src/net/tmwa/itemhandler.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/net/tmwa/itemhandler.cpp b/src/net/tmwa/itemhandler.cpp
index 3b41d5bbc..95d1d0971 100644
--- a/src/net/tmwa/itemhandler.cpp
+++ b/src/net/tmwa/itemhandler.cpp
@@ -22,6 +22,8 @@
#include "net/tmwa/itemhandler.h"
+#include "actormanager.h"
+
#include "net/tmwa/protocol.h"
#include "debug.h"
@@ -66,4 +68,22 @@ void ItemHandler::handleMessage(Net::MessageIn &msg)
BLOCK_END("ItemHandler::handleMessage")
}
+void ItemHandler::processItemDropped(Net::MessageIn &msg)
+{
+ const int id = msg.readInt32();
+ const int itemId = msg.readInt16();
+ const uint8_t identify = msg.readUInt8(); // identify flag
+ const int x = msg.readInt16();
+ const int y = msg.readInt16();
+ const int subX = static_cast<int>(msg.readInt8());
+ const int subY = static_cast<int>(msg.readInt8());
+ const int amount = msg.readInt16();
+
+ if (actorManager)
+ {
+ actorManager->createItem(id, itemId,
+ x, y, amount, identify, subX, subY);
+ }
+}
+
} // namespace TmwAthena