From 9ac9294484179e6aabb49e23c8557991c27ad8e3 Mon Sep 17 00:00:00 2001 From: Cody Young Date: Mon, 20 Mar 2023 23:03:30 -0500 Subject: [PATCH] Add debug statement --- test-programs/logistics-pipes/request_all.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/test-programs/logistics-pipes/request_all.lua b/test-programs/logistics-pipes/request_all.lua index 369a9a1..85f1a38 100644 --- a/test-programs/logistics-pipes/request_all.lua +++ b/test-programs/logistics-pipes/request_all.lua @@ -1,5 +1,6 @@ local pipe = component.logisticspipe.getPipe() local items = pipe.getAvailableItems() +print("Requesting all items I can find... this might take up a lot of storage space!") for _,item in pairs(items) do local itemStack = item.getValue1() print("Requesting :" .. item.getValue2() .. " of " .. itemStack.getName() .. " from mod " .. itemStack.getModName())