From 925501a486fbc17169d928287411aaa214d08a8b Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 3 Oct 2024 23:22:03 +0200 Subject: [PATCH] Add display name getter --- storage/itemstack.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/storage/itemstack.lua b/storage/itemstack.lua index 1e897b9..fc6b73b 100644 --- a/storage/itemstack.lua +++ b/storage/itemstack.lua @@ -108,6 +108,10 @@ function ItemStack:isEmpty() return self.count == nil or self.count == 0 end +function ItemStack:getDisplayName() + return self.displayName +end + function ItemStack:hasChanged(listObj, thorough) local listItem = listObj[self.slot] if listItem == nil or listItem.name ~= self.name or listItem.count ~= self.count then