From 494088c527c26d19391bdab65048ef39b2d590f0 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 14 Jun 2020 16:59:33 -0700 Subject: [PATCH] Tweak idle timer down from 30 seconds to 10 I'm nervos that otherwise the game will impose a long delay after the final player submits their answers. --- empathy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/empathy.js b/empathy.js index b039a73..04b4c6d 100644 --- a/empathy.js +++ b/empathy.js @@ -167,7 +167,7 @@ class Empathy extends Game { this.answering_idle_timer = setTimeout(() => { this.state_answering_idle = true; this.broadcast_event_object('answering-idle', true); - }, 30 * 1000); + }, 10 * 1000); } /* Notify all players that this player is actively answering. */ -- 2.43.0