From 3951f7cbd4f113d740ff73f10371ccb01c86ecee Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 3 Oct 2024 18:05:41 +0200 Subject: [PATCH] Add helpful getter functions for ItemStack --- storage/itemstack.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/storage/itemstack.lua b/storage/itemstack.lua index 2c3b9b1..e0816ad 100644 --- a/storage/itemstack.lua +++ b/storage/itemstack.lua @@ -73,6 +73,34 @@ function ItemStack:getCount() return self.count or 0 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() return self.count == nil or self.count == 0 end