Fix Sentinel tagging

This commit is contained in:
Gabriel Tofvesson 2024-10-12 07:37:07 +02:00
parent 40cf649c16
commit 40728b4860
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
local ItemStack = require("storage.itemstack") local ItemStack = require("storage.itemstack")
local Sentinel = require("storage.sentinel") local Sentinel = require("storage.sentinel")
local Chest = Sentinel.tag({}, Sentinel.CHEST) local Chest = Sentinel:tag({}, Sentinel.CHEST)
Chest.__index = 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

View File

@ -1,7 +1,7 @@
local Chest = require("storage.chest") local Chest = require("storage.chest")
local Sentinel = require("storage.sentinel") local Sentinel = require("storage.sentinel")
local Storage = Sentinel.tag({}, Sentinel.STORAGE) local Storage = Sentinel:tag({}, Sentinel.STORAGE)
Storage.__index = Storage Storage.__index = Storage
function Storage.assumeHomogeneous(names) function Storage.assumeHomogeneous(names)

View File

@ -1,7 +1,7 @@
local Inventory = require("storage.inventory") local Inventory = require("storage.inventory")
local Sentinel = require("storage.sentinel") local Sentinel = require("storage.sentinel")
local ItemStack = Sentinel.tag({}, Sentinel.ITEMSTACK) local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
ItemStack.__index = ItemStack ItemStack.__index = ItemStack
function ItemStack:fromDetail(inv, detail, slot) function ItemStack:fromDetail(inv, detail, slot)