diff --git a/farms/attack.lua b/farms/attack.lua index 6c62ad6..caa6f47 100644 --- a/farms/attack.lua +++ b/farms/attack.lua @@ -76,6 +76,9 @@ local function dropOff() local inv = turtle.getSummedInventory() for _, slot in pairs(inv) do if slot.count >= 16 then + if turtle.getFuelLevel() < 1000 then + turtle.refuel(slot.name, 16) + end turtle.dropDownAt(chest, slot.name) end end