From 2e424a2cdad08bbfe36619a961d161c3d5dd9444 Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Sat, 17 Jan 2026 16:32:56 -0500 Subject: [PATCH] chore: align variable names Changes STORAGE_ADDRESS to STORAGE_ADDR to match the other addresses. --- compacting-storage.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compacting-storage.lua b/compacting-storage.lua index 07d31da..4058bf9 100644 --- a/compacting-storage.lua +++ b/compacting-storage.lua @@ -8,8 +8,8 @@ local MAIN_TICKER = "" local REQUEST_TICKER = "" -local STORAGE_ADDRESS = "" local CRAFTING_REQUESTER = "" +local STORAGE_ADDR = "" local COMPACTING_ADDR = "" local UNPACKING_ADDR = "" local SLEEP_TIME = 30 @@ -84,7 +84,7 @@ function request_more (ticker, item_type) value = ".*:" .. item_type .. "_nugget" } } - ticker.requestFiltered(STORAGE_ADDRESS, request) + ticker.requestFiltered(STORAGE_ADDR, request) end -- logic