summaryrefslogtreecommitdiff
path: root/src/net/ea/inventoryhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/ea/inventoryhandler.h')
-rw-r--r--src/net/ea/inventoryhandler.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/ea/inventoryhandler.h b/src/net/ea/inventoryhandler.h
index 31a755b42..98a617c83 100644
--- a/src/net/ea/inventoryhandler.h
+++ b/src/net/ea/inventoryhandler.h
@@ -41,7 +41,7 @@ class InventoryHandler notfinal : public Net::InventoryHandler
virtual ~InventoryHandler();
- void clear() override final;
+ void clear() const override final;
bool canSplit(const Item *const item) const
override final A_CONST A_WARN_UNUSED;
@@ -55,11 +55,11 @@ class InventoryHandler notfinal : public Net::InventoryHandler
size_t getSize(const InventoryTypeT type) const override final
A_CONST A_WARN_UNUSED;
- void pushPickup(const BeingId floorId);
+ static void pushPickup(const BeingId floorId);
- void destroyStorage() override final;
+ void destroyStorage() const override final;
- void forgotStorage() override final;
+ void forgotStorage() const override final;
Inventory *getStorage() const override final;