diff options
Diffstat (limited to '')
-rw-r--r-- | src/Item.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Item.cpp b/src/Item.cpp index ba2a8db90..198912aa4 100644 --- a/src/Item.cpp +++ b/src/Item.cpp @@ -197,7 +197,7 @@ bool cItem::DamageItem(short a_Amount) bool cItem::IsFullStack(void) const { - return (m_ItemCount >= ItemHandler(m_ItemType)->GetMaxStackSize()); + return (m_ItemCount >= GetMaxStackSize()); } @@ -206,16 +206,16 @@ bool cItem::IsFullStack(void) const char cItem::GetMaxStackSize(void) const { - return ItemHandler(m_ItemType)->GetMaxStackSize(); + return cItemHandler::For(m_ItemType).GetMaxStackSize(); } -cItemHandler * cItem::GetHandler(void) const +const cItemHandler & cItem::GetHandler(void) const { - return ItemHandler(m_ItemType); + return cItemHandler::For(m_ItemType); } |