]> git.cworth.org Git - lmno-server/commitdiff
Make the 3-2-1 countdown timer for revealing tiles twice as fast
authorCarl Worth <cworth@cworth.org>
Sun, 8 Mar 2026 15:20:08 +0000 (11:20 -0400)
committerCarl Worth <cworth@cworth.org>
Sun, 8 Mar 2026 15:20:08 +0000 (11:20 -0400)
Maybe I'm just impatient while testing, but it seems like a faster
rate is warranted here.

anagrams.js

index f6b551f9e522e789ae53e40163969eb7c94c6c6a..868bb81e9d5e5aaa26d4118bbec24f2e74f923b1 100644 (file)
@@ -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 {