From: Carl Worth Date: Sun, 8 Mar 2026 15:20:08 +0000 (-0400) Subject: Make the 3-2-1 countdown timer for revealing tiles twice as fast X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=f05e24dbc0a129a9b09f181ce606ae6e1ee172c4;p=lmno-server Make the 3-2-1 countdown timer for revealing tiles twice as fast Maybe I'm just impatient while testing, but it seems like a faster rate is warranted here. --- diff --git a/anagrams.js b/anagrams.js index f6b551f..868bb81 100644 --- a/anagrams.js +++ b/anagrams.js @@ -6,7 +6,7 @@ const { TILE_DISTRIBUTION_NO_BLANKS, make_bag } = require("./tiles.js"); const CLAIM_TIMEOUT_MS = 60000; /* 60 seconds to form a word */ const CLAIM_WARNING_MS = 15000; /* show timer for last 15 seconds */ const VOTE_TIMEOUT_MS = 15000; /* 15 seconds to vote */ -const REVEAL_COUNTDOWN_MS = 3000; /* 3 seconds to reveal a tile */ +const REVEAL_COUNTDOWN_MS = 1500; /* 1.5 seconds to reveal a tile */ const MIN_WORD_LENGTH = 4; class Anagrams extends Game {