Fixed refuel bug.

This commit is contained in:
Andrew Lalis 2022-12-22 21:54:32 +01:00
parent 821a29175d
commit a90f9fbd5b
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ local function refuelToAtLeast(requiredLevel, settings)
local fuelUpdated = false local fuelUpdated = false
while not fuelUpdated do while not fuelUpdated do
os.pullEvent("turtle_inventory") os.pullEvent("turtle_inventory")
fuelUpdated = refuelAll() fuelUpdated = refuelAll(settings)
end end
end end
end end