fix: Ensure time since last seen defaults to 0 in dashboard display

This commit is contained in:
MayaTheShy
2026-02-19 23:34:54 -05:00
parent 31b2c8f61a
commit 127a80813e

View File

@@ -155,7 +155,7 @@ local function drawDashboard()
-- Last seen
monitor.setTextColor(colors.darkGray)
monitor.write(string.format(" %ds", timeSince))
monitor.write(string.format(" %ds", timeSince or 0))
y = y + 1
count = count + 1