Fixed issue with nil fuels.

This commit is contained in:
Andrew Lalis 2022-12-22 10:48:42 +01:00
parent d3f64ed191
commit 1c95cad34a
1 changed files with 7 additions and 5 deletions

View File

@ -115,11 +115,13 @@ local function refuelAll(settings)
local refueled = false local refueled = false
for slot = 1, 16 do for slot = 1, 16 do
local item = t.getItemDetail(slot) local item = t.getItemDetail(slot)
for _, fuelName in pairs(fuels) do if item ~= nil then
if item.name == fuelName then for _, fuelName in pairs(fuels) do
t.select(i) if item.name == fuelName then
if t.refuel(item.count) then refueled = true end t.select(i)
break if t.refuel(item.count) then refueled = true end
break
end
end end
end end
end end