This commit is contained in:
Crispy 2025-06-22 00:08:46 +02:00
parent f8fd2513c8
commit 491112768c
27 changed files with 1095 additions and 3537 deletions

View file

@ -114,3 +114,13 @@ function takeDepot()
turtle.suckDown()
end
function emptyInventory()
for i = 1, 16 do
if turtle.getItemCount(i) ~= 0 then
turtle.select(i)
chest_items = pFront("items")
turtle.drop()
end
end
end