]> git.cworth.org Git - zombocom-ai/commitdiff
Set bus timer to 30 seconds
authorCarl Worth <cworth@cworth.org>
Fri, 23 Dec 2022 19:50:39 +0000 (11:50 -0800)
committerCarl Worth <cworth@cworth.org>
Fri, 23 Dec 2022 19:51:10 +0000 (11:51 -0800)
Since I'm about to send this puzzle out to the boys

index.js

index bfa6d8a1b76342d9a33e8a5469b2ce8523fd1435..4ed609917e9d53d7c749a8b9faf0dde00c2d8a53 100644 (file)
--- 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);
 }