From: Carl Worth Date: Mon, 9 Mar 2026 03:07:05 +0000 (-0400) Subject: Reduce end-of-game idle timer from 2 minutes to 1 minute X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=7b6f7c0efd1fb176e0de4c15639a9496e771d540;p=lmno-server 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. --- 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 {