From 40728b486067be52c210398d04ce29716342496a Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 07:37:07 +0200 Subject: [PATCH] Fix Sentinel tagging --- storage/chest.lua | 2 +- storage/init.lua | 2 +- storage/itemstack.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/storage/chest.lua b/storage/chest.lua index a1745c7..ff6278d 100644 --- a/storage/chest.lua +++ b/storage/chest.lua @@ -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 diff --git a/storage/init.lua b/storage/init.lua index 3e58ef8..4fdccaa 100644 --- a/storage/init.lua +++ b/storage/init.lua @@ -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) diff --git a/storage/itemstack.lua b/storage/itemstack.lua index 51ff03d..781a7ef 100644 --- a/storage/itemstack.lua +++ b/storage/itemstack.lua @@ -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)