Fix inventory naming bug
This commit is contained in:
parent
dd15e2a01e
commit
269eaeb344
21
storage/inventory.lua
Normal file
21
storage/inventory.lua
Normal 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
|
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user