From 4ab473a35bd6dfd90bbe48633d62130a52900cff Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Wed, 8 Jan 2020 18:08:15 -0500 Subject: uptime starts at 0 not 1 --- examples/jarvis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/jarvis.js b/examples/jarvis.js index 6bf2286..6df70fa 100644 --- a/examples/jarvis.js +++ b/examples/jarvis.js @@ -104,9 +104,9 @@ function notifRefresh(){ } function timect(){ - minsUp++; notifRefresh(); setTimeout(timect, 60*1000); + minsUp++; } function protectArea(send, tiles, locs){ -- cgit