From 37ec33ce56462845f511185836b8d3e33cacd321 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 23 Dec 2022 11:50:39 -0800 Subject: [PATCH] Set bus timer to 30 seconds Since I'm about to send this puzzle out to the boys --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index bfa6d8a..4ed6099 100644 --- a/index.js +++ b/index.js @@ -175,7 +175,7 @@ function emit_bus_timer() { function start_bus_timer() { const bus = state.bus; - bus.timer = 3; // XXX: 30 in production + bus.timer = 30; emit_bus_timer(); bus_interval = setInterval(emit_bus_timer, 1000); } -- 2.43.0