This commit is contained in:
2025-06-27 15:29:05 +01:00
parent 53f96bf5db
commit 890bfad815
2 changed files with 34 additions and 3 deletions
+2 -2
View File
@@ -99,12 +99,12 @@ local function refuelIfNeeded()
local x, y, z, gpsActive = M.getPosition()
local posText = gpsActive and
string.format("GPS (%d,%d,%d)", x, y, z) or
string.format("Manual (%d,%d,%d)", x, y, z)
string.format("Travelled: (%d,%d,%d)", x, y, z)
if statusCallback then
statusCallback("out_of_fuel " .. posText)
end
logger.log("No fuel. Waiting for fuel... Location: " .. posText)
sleep(5)