Fix stack count nil ref

This commit is contained in:
Gabriel Tofvesson 2024-10-08 19:40:37 +02:00
parent 77af7893b7
commit f70ad73ac0

View File

@ -122,7 +122,7 @@ function ItemStack:hasChanged(listObj, thorough)
end
function ItemStack:_modify(countDelta, stack)
local newCount = self.count + countDelta
local newCount = self:getCount() + countDelta
if newCount < 0 then
error("ERROR: New stack count is negative: "..newCount)
end