From d207e52ab770681f8bd584c06dd9aa03096b71f5 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 16 Aug 2015 16:33:07 +0300 Subject: Move processItemVisible from ea namespace into eathena and tmwa. --- src/net/ea/itemhandler.cpp | 25 ------------------------- src/net/ea/itemhandler.h | 2 -- 2 files changed, 27 deletions(-) (limited to 'src/net/ea') diff --git a/src/net/ea/itemhandler.cpp b/src/net/ea/itemhandler.cpp index 84998bb0c..b8973c039 100644 --- a/src/net/ea/itemhandler.cpp +++ b/src/net/ea/itemhandler.cpp @@ -39,31 +39,6 @@ ItemHandler::~ItemHandler() { } -void ItemHandler::processItemVisible(Net::MessageIn &msg) -{ - const BeingId id = msg.readBeingId("item object id"); - const int itemId = msg.readInt16("item id"); - const Identified identified = fromInt( - msg.readUInt8("identify"), Identified); - const int x = msg.readInt16("x"); - const int y = msg.readInt16("y"); - const int amount = msg.readInt16("amount"); - const int subX = static_cast(msg.readInt8("sub x")); - const int subY = static_cast(msg.readInt8("sub y")); - - if (actorManager) - { - actorManager->createItem(id, - itemId, - x, y, - 0, - amount, - ItemColor_one, - identified, - subX, subY); - } -} - void ItemHandler::processItemRemove(Net::MessageIn &msg) { if (actorManager) diff --git a/src/net/ea/itemhandler.h b/src/net/ea/itemhandler.h index a67f701a4..f499a5f7b 100644 --- a/src/net/ea/itemhandler.h +++ b/src/net/ea/itemhandler.h @@ -42,8 +42,6 @@ class ItemHandler notfinal virtual ~ItemHandler(); - static void processItemVisible(Net::MessageIn &msg); - static void processItemRemove(Net::MessageIn &msg); }; -- cgit v1.2.3-60-g2f50