From ed0671d50b9851bf58d05a86ecd11cc1d23845f9 Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Sun, 14 Sep 2025 13:45:08 -0400 Subject: [PATCH] Another bugfix --- compacting-storage.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compacting-storage.lua b/compacting-storage.lua index 889edd9..e69c3b0 100644 --- a/compacting-storage.lua +++ b/compacting-storage.lua @@ -86,7 +86,7 @@ function drain (type, form, amount) elseif form == "ingot" then conversion = "ingot_to_block" end - print("Draining %d %s %ss":format(amount, type, form)) + print(("Draining %d %s %ss"):format(amount, type, form)) request_multiple(type, conversion, amount) end @@ -101,7 +101,7 @@ function fill (type, dest, amount) conversion = "block_to_ingot" end end - print("Converting %d %s %ss to %ss":format(amount, type, src, dest)) + print(("Converting %d %s %ss to %ss"):format(amount, type, src, dest)) request_multiple(type, conversion, amount) end