This commit is contained in:
2026-02-03 02:09:35 +01:00
parent 711c78d762
commit a4b011fcd9
2 changed files with 9 additions and 9 deletions

View File

@@ -263,7 +263,7 @@ function buildResultMeta(r) {
const hasPlayers = r.minPlayers || r.maxPlayers;
const players = hasPlayers
? t("card.players", { min: r.minPlayers ?? "?", max: r.maxPlayers ?? "?" })
: "wtf";
: null;
const bits = [r.genre, players].filter(Boolean);
if (bits.length === 0) return "";
return `<div class="muted small">${bits.join(" • ")}</div>`;