diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-03 00:01:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-03 00:01:34 +0300 |
commit | 1eea3f1102b7d8f87b076a5a8380fd71fc00d773 (patch) | |
tree | c6c993c12631ff2e9f9d9784e83497caf87edbf6 /src/net/eathena/inventoryhandler.cpp | |
parent | 2f6f5950605e3ffe8054f3a2675f10032ca0aaf6 (diff) | |
download | ManaVerse-1eea3f1102b7d8f87b076a5a8380fd71fc00d773.tar.gz ManaVerse-1eea3f1102b7d8f87b076a5a8380fd71fc00d773.tar.bz2 ManaVerse-1eea3f1102b7d8f87b076a5a8380fd71fc00d773.tar.xz ManaVerse-1eea3f1102b7d8f87b076a5a8380fd71fc00d773.zip |
improve inventoryhandler class.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r-- | src/net/eathena/inventoryhandler.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index 80b8ed73c..79219cb42 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -135,7 +135,7 @@ void InventoryHandler::handleMessage(Net::MessageIn &msg) } } -void InventoryHandler::equipItem(const Item *item) +void InventoryHandler::equipItem(const Item *const item) const { if (!item) return; @@ -146,7 +146,7 @@ void InventoryHandler::equipItem(const Item *item) outMsg.writeInt16(0); } -void InventoryHandler::unequipItem(const Item *item) +void InventoryHandler::unequipItem(const Item *const item) const { if (!item) return; @@ -156,7 +156,7 @@ void InventoryHandler::unequipItem(const Item *item) item->getInvIndex() + INVENTORY_OFFSET)); } -void InventoryHandler::useItem(const Item *item) +void InventoryHandler::useItem(const Item *const item) const { if (!item) return; @@ -167,7 +167,7 @@ void InventoryHandler::useItem(const Item *item) outMsg.writeInt32(item->getId()); // unused } -void InventoryHandler::dropItem(const Item *item, int amount) +void InventoryHandler::dropItem(const Item *const item, const int amount) const { if (!item) return; @@ -179,13 +179,13 @@ void InventoryHandler::dropItem(const Item *item, int amount) outMsg.writeInt16(static_cast<int16_t>(amount)); } -void InventoryHandler::closeStorage(int type A_UNUSED) +void InventoryHandler::closeStorage(const int type A_UNUSED) const { MessageOut outMsg(CMSG_CLOSE_STORAGE); } -void InventoryHandler::moveItem2(int source, int slot, int amount, - int destination) +void InventoryHandler::moveItem2(const int source, const int slot, + const int amount, const int destination) const { if (source == Inventory::INVENTORY && destination == Inventory::STORAGE) { |