This commit is contained in:
Laurie Fisher 2025-06-27 13:53:37 +01:00
parent 21f08b3041
commit 3856990907
Signed by: PinkEyedOrphan
GPG Key ID: 7F827B68147AEE76

View File

@ -37,7 +37,7 @@ local function draw()
for id, data in pairs(turtleStates) do
local age = os.clock() - data.time
local status = (age > 10) and "offline" or data.status
local line = string.format("%s (ID %d): %s", data.label, id, status)
local line = string.format("%s (ID %d): %s - %d", data.label, id, status, age)
table.insert(output, line)
end