diff options
Diffstat (limited to 'src/ItemGrid.cpp')
-rw-r--r-- | src/ItemGrid.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ItemGrid.cpp b/src/ItemGrid.cpp index a4cf41a14..4ffd51b97 100644 --- a/src/ItemGrid.cpp +++ b/src/ItemGrid.cpp @@ -246,7 +246,7 @@ void cItemGrid::Clear(void) int cItemGrid::HowManyCanFit(const cItem & a_ItemStack, bool a_AllowNewStacks) { int NumLeft = a_ItemStack.m_ItemCount; - int MaxStack = ItemHandler(a_ItemStack.m_ItemType)->GetMaxStackSize(); + int MaxStack = a_ItemStack.GetMaxStackSize(); if (!m_Slots.IsStorageAllocated()) { @@ -491,10 +491,9 @@ int cItemGrid::ChangeSlotCount(int a_SlotNum, int a_AddToCount) m_Slots[a_SlotNum].m_ItemCount += a_AddToCount; - cItemHandler * Handler = cItemHandler::GetItemHandler(m_Slots[a_SlotNum].m_ItemType); - if (m_Slots[a_SlotNum].m_ItemCount > Handler->GetMaxStackSize()) + if (m_Slots[a_SlotNum].m_ItemCount > m_Slots[a_SlotNum].GetMaxStackSize()) { - m_Slots[a_SlotNum].m_ItemCount = Handler->GetMaxStackSize(); + m_Slots[a_SlotNum].m_ItemCount = m_Slots[a_SlotNum].GetMaxStackSize(); } TriggerListeners(a_SlotNum); |