From 5b9b2f76f488da3d1152d365b14660a8c13776df Mon Sep 17 00:00:00 2001 From: George Powell Date: Mon, 2 Feb 2026 01:32:17 -0500 Subject: [PATCH] added some more words to the "first letter" edge case --- src/lib/components/GuessesTable.svelte | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/lib/components/GuessesTable.svelte b/src/lib/components/GuessesTable.svelte index eacf874..c8a29b9 100644 --- a/src/lib/components/GuessesTable.svelte +++ b/src/lib/components/GuessesTable.svelte @@ -50,17 +50,24 @@ correctBook?.section === "General Epistles") && correctBook.name[0] === "1"; const guessIsEpistlesWithNumber = - (guess.book.section === "Pauline Epistles" || - guess.book.section === "General Epistles") && - guess.book.name[0] === "1"; + (guess.book.section === "Pauline Epistles" || + guess.book.section === "General Epistles") && + guess.book.name[0] === "1"; if ( correctIsEpistlesWithNumber && guessIsEpistlesWithNumber && guess.firstLetterMatch ) { - const words = ["Exactly", "Right", "Yes", "Naturally"]; - return words[Math.floor(Math.random() * words.length)]; // Special wordplay case + const words = [ + "Exactly", + "Right", + "Yes", + "Naturally", + "Of course", + "Sure", + ]; + return words[Math.floor(Math.random() * words.length)]; // Special wordplay case } return getFirstLetter(guess.book.name); // Normal case: show first letter, ignoring numbers case "testament":