From 734dd6dcca6aa54f9e206bbbf23c2430790bff3e Mon Sep 17 00:00:00 2001 From: cay Date: Mon, 13 Apr 2026 10:25:55 +0100 Subject: [PATCH] xdgfhkmd,zf --- views/1v1-battlefield.ejs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/views/1v1-battlefield.ejs b/views/1v1-battlefield.ejs index b10b971..146d427 100644 --- a/views/1v1-battlefield.ejs +++ b/views/1v1-battlefield.ejs @@ -388,7 +388,15 @@ hand.appendChild(deckSlot); // ── Slots 2–4: aufgedeckte Handkarten (leer bis API lädt) ─── - const handCardIds = ["hand-card-1", "hand-card-2", "hand-card-3"]; + const handCardIds = [ + "hand-card-1", + "hand-card-2", + "hand-card-3", + "hand-card-4", + "hand-card-5", + "hand-card-6", + "hand-card-7", + ]; handCardIds.forEach((id) => { const s = document.createElement("div"); s.className = "hand-slot hand-slot-card"; @@ -397,14 +405,6 @@ hand.appendChild(s); }); - // ── Slots 5–8: leere Slots ─────────────────────────── - for (let i = 0; i < 4; i++) { - const s = document.createElement("div"); - s.className = "hand-slot"; - s.innerHTML = '🃏'; - hand.appendChild(s); - } - // ══════════════════════════════════════════════════════ // HAND & DECK SYSTEM // ══════════════════════════════════════════════════════