This commit is contained in:
cay 2026-04-13 11:36:22 +01:00
parent d4def9322f
commit 6f7ba43193

View File

@ -552,9 +552,11 @@
} }
// Erste 3 in die Hand // Erste 3 in die Hand
handCardIds.forEach((id, i) => { for (let i = 0; i < 3; i++) {
if (expanded[i]) setHandSlot(id, expanded[i]); if (expanded[i]) {
}); setHandSlot(handCardIds[i], expanded[i]);
}
}
// Rest als Deck-Queue // Rest als Deck-Queue
deckQueue = expanded.slice(3); deckQueue = expanded.slice(3);