chore: align variable names

Changes STORAGE_ADDRESS to STORAGE_ADDR to match the other addresses.
This commit is contained in:
Emerson Rosen-Jones 2026-01-17 16:32:56 -05:00
parent fa433f3c62
commit 2e424a2cda

View file

@ -8,8 +8,8 @@
local MAIN_TICKER = "" local MAIN_TICKER = ""
local REQUEST_TICKER = "" local REQUEST_TICKER = ""
local STORAGE_ADDRESS = ""
local CRAFTING_REQUESTER = "" local CRAFTING_REQUESTER = ""
local STORAGE_ADDR = ""
local COMPACTING_ADDR = "" local COMPACTING_ADDR = ""
local UNPACKING_ADDR = "" local UNPACKING_ADDR = ""
local SLEEP_TIME = 30 local SLEEP_TIME = 30
@ -84,7 +84,7 @@ function request_more (ticker, item_type)
value = ".*:" .. item_type .. "_nugget" value = ".*:" .. item_type .. "_nugget"
} }
} }
ticker.requestFiltered(STORAGE_ADDRESS, request) ticker.requestFiltered(STORAGE_ADDR, request)
end end
-- logic -- logic