From 7b6f7c0efd1fb176e0de4c15639a9496e771d540 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 8 Mar 2026 23:07:05 -0400 Subject: [PATCH] Reduce end-of-game idle timer from 2 minutes to 1 minute When Stacy and I played a game with the 2-minute timer we found we were done long before the prompt came up to ask if we were done. --- anagrams.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anagrams.js b/anagrams.js index 1ec3cb4..db8d23a 100644 --- a/anagrams.js +++ b/anagrams.js @@ -9,7 +9,7 @@ const VOTE_TIMEOUT_MS = 15000; /* 15 seconds to vote */ const REVEAL_COUNTDOWN_MS = 1500; /* 1.5 seconds to reveal a tile */ const MIN_CENTER_TILES = 7; /* auto-deal to maintain this many */ const MIN_WORD_LENGTH = 4; -const IDLE_TIMEOUT_MS = 120000; /* 2 minutes of inactivity before warning */ +const IDLE_TIMEOUT_MS = 60000; /* 1 minute of inactivity before warning */ const IDLE_COUNTDOWN_MS = 10000; /* 10 seconds to respond to warning */ class Anagrams extends Game { -- 2.45.2