Fix inventory naming bug

This commit is contained in:
Gabriel Tofvesson 2024-10-08 23:52:54 +02:00
parent dd15e2a01e
commit 269eaeb344
2 changed files with 25 additions and 3 deletions

21
storage/inventory.lua Normal file
View File

@ -0,0 +1,21 @@
local Inventory = {}
function Inventory.getName(inv)
return peripheral.getName(inv)
end
function Inventory.getSimpleName(inv)
if inv == nil then
return "[NO_INV]"
end
local name = peripheral.getName(inv)
local _, e = name:find(":")
if e == nil then
return name
end
return name:sub(e + 1)
end
return Inventory

View File

@ -1,3 +1,5 @@
local Inventory = require("storage.inventory")
local ItemStack = {} local ItemStack = {}
ItemStack.__index = ItemStack ItemStack.__index = ItemStack
@ -132,9 +134,8 @@ function ItemStack:getSimpleName()
return simpleName return simpleName
end end
local inventory = self:getInventory() return Inventory.getSimpleName(self:getInventory()).."["..(self:getSlot() or "NO_SLOT").."]"
return (((inventory and inventory:getName()) or inventory and "[UNKNOWN_INV]") or "[NO_INV]").."["..(self:getSlot() or "NO_SLOT").."]"
end end
function ItemStack:hasChanged(listObj, thorough) function ItemStack:hasChanged(listObj, thorough)