Fix Sentinel tagging
This commit is contained in:
parent
40cf649c16
commit
40728b4860
@ -1,7 +1,7 @@
|
||||
local ItemStack = require("storage.itemstack")
|
||||
local Sentinel = require("storage.sentinel")
|
||||
|
||||
local Chest = Sentinel.tag({}, Sentinel.CHEST)
|
||||
local Chest = Sentinel:tag({}, Sentinel.CHEST)
|
||||
Chest.__index = Chest
|
||||
|
||||
-- Homogeneity allows chest scan to clone empty itemDetail slot to all empty slots in chest
|
||||
|
@ -1,7 +1,7 @@
|
||||
local Chest = require("storage.chest")
|
||||
local Sentinel = require("storage.sentinel")
|
||||
|
||||
local Storage = Sentinel.tag({}, Sentinel.STORAGE)
|
||||
local Storage = Sentinel:tag({}, Sentinel.STORAGE)
|
||||
Storage.__index = Storage
|
||||
|
||||
function Storage.assumeHomogeneous(names)
|
||||
|
@ -1,7 +1,7 @@
|
||||
local Inventory = require("storage.inventory")
|
||||
local Sentinel = require("storage.sentinel")
|
||||
|
||||
local ItemStack = Sentinel.tag({}, Sentinel.ITEMSTACK)
|
||||
local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
|
||||
ItemStack.__index = ItemStack
|
||||
|
||||
function ItemStack:fromDetail(inv, detail, slot)
|
||||
|
Loading…
x
Reference in New Issue
Block a user