1 Commits

Author SHA1 Message Date
Hördle Bot
9df9a808bf fix: share emoji fills remaining slots with black squares when game is lost 2025-11-27 13:06:01 +01:00

View File

@@ -262,7 +262,8 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max
emojiGrid += '🟥'; emojiGrid += '🟥';
} }
} else { } else {
emojiGrid += '⬜'; // If game is lost, fill remaining slots with black squares
emojiGrid += hasLost ? '⬛' : '⬜';
} }
} }