From f0a0fd57897ce771212a9fa683458bdb9c595b53 Mon Sep 17 00:00:00 2001 From: Andrew Lalis Date: Fri, 23 Dec 2022 08:27:45 +0100 Subject: [PATCH] Fixed refuel error with nil item. --- src/movescript.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/movescript.lua b/src/movescript.lua index b08d676..f77a6cc 100644 --- a/src/movescript.lua +++ b/src/movescript.lua @@ -118,7 +118,7 @@ local function refuelAll(settings) if item ~= nil then for _, fuelName in pairs(fuels) do if item.name == fuelName then - t.select(i) + t.select(slot) if t.refuel(item.count) then refueled = true end break end