From dede11d22bde708207f0537f1e88eaafaed96a1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Wed, 26 Nov 2025 18:00:59 +0100 Subject: [PATCH] fix: correct plausible score calculation --- components/Game.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Game.tsx b/components/Game.tsx index c916476..22598ea 100644 --- a/components/Game.tsx +++ b/components/Game.tsx @@ -213,7 +213,7 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max props: { genre: genre || 'Global', attempts: gameState.guesses.length, - score: gameState.score + (correct ? 30 : 20), // Include win + year bonus + score: gameState.score + (correct ? 10 : 0), // Include year bonus if correct outcome: 'won', year_bonus: correct ? 'correct' : 'incorrect' } @@ -234,7 +234,7 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max props: { genre: genre || 'Global', attempts: gameState.guesses.length, - score: gameState.score + 20, // Include win bonus only + score: gameState.score, // Score already includes win bonus outcome: 'won', year_bonus: 'skipped' }