diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-08 20:42:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-08 20:42:40 +0300 |
commit | 1fcd75140b847a0e50584fc07fc47d90c9dd9fa8 (patch) | |
tree | 5c1b23c7eabc7d421f46d40ab0bf787ef7dac49b /src/net/inventoryhandler.h | |
parent | 53bc0b25c23f8f24d4119ae6fb5ba6ca0a91be19 (diff) | |
download | mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.tar.gz mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.tar.bz2 mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.tar.xz mv-1fcd75140b847a0e50584fc07fc47d90c9dd9fa8.zip |
Add small optimisations and fixes.
Diffstat (limited to 'src/net/inventoryhandler.h')
-rw-r--r-- | src/net/inventoryhandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/inventoryhandler.h b/src/net/inventoryhandler.h index e34eb5e55..06c73d288 100644 --- a/src/net/inventoryhandler.h +++ b/src/net/inventoryhandler.h @@ -45,7 +45,7 @@ class InventoryHandler virtual void dropItem(const Item *item, int amount) = 0; - virtual bool canSplit(const Item *item) = 0; + virtual bool canSplit(const Item *item) const = 0; virtual void splitItem(const Item *item, int amount) = 0; @@ -63,7 +63,7 @@ class InventoryHandler // TODO: fix/remove me virtual size_t getSize(int type) const = 0; - virtual int convertFromServerSlot(int eAthenaSlot) = 0; + virtual int convertFromServerSlot(int eAthenaSlot) const = 0; // virtual ~InventoryHandler() {} }; |