diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-03 20:45:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 01:18:56 +0300 |
commit | 5a90cfe600073fbae6d097080ee88fd41cdcbeb7 (patch) | |
tree | 319c34f2cb259d9d8f55bba743182a2d511106c4 /src/net/ea | |
parent | db1548f44fb972c0c60b742dfece7e1f442e0378 (diff) | |
download | mv-5a90cfe600073fbae6d097080ee88fd41cdcbeb7.tar.gz mv-5a90cfe600073fbae6d097080ee88fd41cdcbeb7.tar.bz2 mv-5a90cfe600073fbae6d097080ee88fd41cdcbeb7.tar.xz mv-5a90cfe600073fbae6d097080ee88fd41cdcbeb7.zip |
Move processItemDropped from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/itemhandler.cpp | 18 | ||||
-rw-r--r-- | src/net/ea/itemhandler.h | 2 |
2 files changed, 0 insertions, 20 deletions
diff --git a/src/net/ea/itemhandler.cpp b/src/net/ea/itemhandler.cpp index e5ed730a0..4a5286aee 100644 --- a/src/net/ea/itemhandler.cpp +++ b/src/net/ea/itemhandler.cpp @@ -57,24 +57,6 @@ void ItemHandler::processItemVisible(Net::MessageIn &msg) } } -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); - } -} - void ItemHandler::processItemRemove(Net::MessageIn &msg) { if (actorManager) diff --git a/src/net/ea/itemhandler.h b/src/net/ea/itemhandler.h index ff57d5c9f..fea164d69 100644 --- a/src/net/ea/itemhandler.h +++ b/src/net/ea/itemhandler.h @@ -47,8 +47,6 @@ class ItemHandler notfinal static void processItemVisible(Net::MessageIn &msg); static void processItemRemove(Net::MessageIn &msg); - - static void processItemDropped(Net::MessageIn &msg); }; } // namespace Ea |