Add debug statement
This commit is contained in:
parent
63c6e61489
commit
9ac9294484
|
@ -1,5 +1,6 @@
|
||||||
local pipe = component.logisticspipe.getPipe()
|
local pipe = component.logisticspipe.getPipe()
|
||||||
local items = pipe.getAvailableItems()
|
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
|
for _,item in pairs(items) do
|
||||||
local itemStack = item.getValue1()
|
local itemStack = item.getValue1()
|
||||||
print("Requesting :" .. item.getValue2() .. " of " .. itemStack.getName() .. " from mod " .. itemStack.getModName())
|
print("Requesting :" .. item.getValue2() .. " of " .. itemStack.getName() .. " from mod " .. itemStack.getModName())
|
||||||
|
|
Loading…
Reference in New Issue