Add index metamethod to type tables
This commit is contained in:
parent
99abbbe526
commit
0dbbf36455
@ -1,6 +1,7 @@
|
|||||||
local ItemStack = require("storage.itemstack")
|
local ItemStack = require("storage.itemstack")
|
||||||
|
|
||||||
local Chest = {}
|
local Chest = {}
|
||||||
|
Chest.__index = Chest
|
||||||
|
|
||||||
-- Homogeneity allows chest scan to clone empty itemDetail slot to all empty slots in chest
|
-- Homogeneity allows chest scan to clone empty itemDetail slot to all empty slots in chest
|
||||||
function Chest:fromPeripheral(name, homogeneous)
|
function Chest:fromPeripheral(name, homogeneous)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
local Chest = require("storage.chest")
|
local Chest = require("storage.chest")
|
||||||
local Storage = {}
|
local Storage = {}
|
||||||
|
Storage.__index = Storage
|
||||||
|
|
||||||
function Storage.assumeHomogeneous(names)
|
function Storage.assumeHomogeneous(names)
|
||||||
local mappings = {}
|
local mappings = {}
|
||||||
@ -45,7 +46,7 @@ function Storage:fromSerializable(ser)
|
|||||||
end
|
end
|
||||||
|
|
||||||
setmetatable(obj, self)
|
setmetatable(obj, self)
|
||||||
obj.__index = obj
|
obj.__index = self
|
||||||
|
|
||||||
return obj
|
return obj
|
||||||
end
|
end
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
local ItemStack = {}
|
local ItemStack = {}
|
||||||
|
ItemStack.__index = ItemStack
|
||||||
|
|
||||||
function ItemStack:fromDetail(inv, detail, slot)
|
function ItemStack:fromDetail(inv, detail, slot)
|
||||||
local obj = {
|
local obj = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user