From 283df296c55c2ec6bd8bc7d763d044f9f4397a79 Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Sat, 15 Nov 2025 09:51:24 -0500 Subject: [PATCH] compost_control.lua: made storage feature optional --- compost_control.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compost_control.lua b/compost_control.lua index cb700cb..6d8c494 100644 --- a/compost_control.lua +++ b/compost_control.lua @@ -56,7 +56,7 @@ function move_all (src, dest) end while true do - move_all(COMPOST_OUTPUT, STORAGE) + if STORAGE ~= "" then move_all(COMPOST_OUTPUT, STORAGE) end for _, source in ipairs(SOURCES) do local totals = tally_up(source) local diffs = compare_counts(totals, CHECKS)