From: Carl Worth Date: Fri, 23 Dec 2022 19:50:39 +0000 (-0800) Subject: Set bus timer to 30 seconds X-Git-Url: https://git.cworth.org/git?p=zombocom-ai;a=commitdiff_plain;h=37ec33ce56462845f511185836b8d3e33cacd321 Set bus timer to 30 seconds Since I'm about to send this puzzle out to the boys --- 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); }