Add display name getter

This commit is contained in:
Gabriel Tofvesson 2024-10-03 23:22:03 +02:00
parent 0865e40758
commit 925501a486

View File

@ -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