From dc83c8372f325db87283c95be0204b8974407a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Sun, 23 Nov 2025 08:36:39 +0100 Subject: [PATCH] feat: update share result emojis to distinguish failed (red) vs skipped (black) attempts --- components/Game.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/components/Game.tsx b/components/Game.tsx index 7760600..0740b54 100644 --- a/components/Game.tsx +++ b/components/Game.tsx @@ -120,9 +120,12 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max // If this was the winning guess (last one and won) if (hasWon && i === gameState.guesses.length - 1) { emojiGrid += '🟩'; - } else { - // Wrong or skipped + } else if (gameState.guesses[i] === 'SKIPPED') { + // Skipped emojiGrid += '⬛'; + } else { + // Wrong guess + emojiGrid += '🟥'; } } else { // Unused attempts