minor change

GUI
eric 2025-08-12 06:25:34 +02:00
parent f6bd6e9f2f
commit a45387d37a
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ function handleGameEnd({ winner }) {
nameEl.textContent = winner;
const pts = lastScores && typeof lastScores[winner] !== "undefined" ? lastScores[winner] : null;
ptsEl.textContent = pts != null ? `${winner} endet mit ${pts} Punkten.` : "";
ptsEl.textContent = pts != null ? `${winner} gewinnt mit ${pts} Punkten.` : "";
// Leaderboard im Overlay rendern (aus Cache lastScores)
const boardEl = document.getElementById("winBoard");