Add helpful getter functions for ItemStack
This commit is contained in:
parent
56ef9cae04
commit
3951f7cbd4
@ -73,6 +73,34 @@ function ItemStack:getCount()
|
|||||||
return self.count or 0
|
return self.count or 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function ItemStack:getName()
|
||||||
|
return self.name
|
||||||
|
end
|
||||||
|
|
||||||
|
function ItemStack:getDamage()
|
||||||
|
return self.damage
|
||||||
|
end
|
||||||
|
|
||||||
|
function ItemStack:getMaxDamage()
|
||||||
|
return self.maxDamage
|
||||||
|
end
|
||||||
|
|
||||||
|
function ItemStack:getMaxCount()
|
||||||
|
return self.maxCount
|
||||||
|
end
|
||||||
|
|
||||||
|
function ItemStack:getEnchantments()
|
||||||
|
return self.enchantments
|
||||||
|
end
|
||||||
|
|
||||||
|
function ItemStack:getSlot()
|
||||||
|
return self.slot
|
||||||
|
end
|
||||||
|
|
||||||
|
function ItemStack:getInventory()
|
||||||
|
return self.inv
|
||||||
|
end
|
||||||
|
|
||||||
function ItemStack:isEmpty()
|
function ItemStack:isEmpty()
|
||||||
return self.count == nil or self.count == 0
|
return self.count == nil or self.count == 0
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user