From d16558853cb7e64be9e0006e56732a96d039729f Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 8 Oct 2024 19:58:41 +0200 Subject: [PATCH] Add guaranteed non-nil name for itemstack --- storage/itemstack.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/storage/itemstack.lua b/storage/itemstack.lua index 111c513..6eb57b5 100644 --- a/storage/itemstack.lua +++ b/storage/itemstack.lua @@ -112,6 +112,30 @@ function ItemStack:getDisplayName() return self.displayName end +function ItemStack:getSimpleName() + local displayName = self:getDisplayName() + if displayName ~= nil then + return displayName + end + + local name = self:getName() + if name ~= nil then + local _, e = name:find(":") + if e == nil then + return name + end + + local simpleName = name:sub(e + 1) + if #simpleName == 0 then + return name + end + + return simpleName + end + + return self:getInventory():getName().."["..self:getSlot().."]" +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