diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-16 16:33:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-16 16:33:07 +0300 |
commit | d207e52ab770681f8bd584c06dd9aa03096b71f5 (patch) | |
tree | d48a4272fa627cf566f1948ac636721dd1390828 /src/net/ea/itemhandler.cpp | |
parent | 29a39909e3f53305c4e29fdcba863f94603b8763 (diff) | |
download | plus-d207e52ab770681f8bd584c06dd9aa03096b71f5.tar.gz plus-d207e52ab770681f8bd584c06dd9aa03096b71f5.tar.bz2 plus-d207e52ab770681f8bd584c06dd9aa03096b71f5.tar.xz plus-d207e52ab770681f8bd584c06dd9aa03096b71f5.zip |
Move processItemVisible from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/ea/itemhandler.cpp')
-rw-r--r-- | src/net/ea/itemhandler.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
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<int>(msg.readInt8("sub x")); - const int subY = static_cast<int>(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) |