Fix stack count nil ref
This commit is contained in:
parent
77af7893b7
commit
f70ad73ac0
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user