This commit is contained in:
cay 2026-04-13 11:44:58 +01:00
parent d03b58b40f
commit d58e27cbe6

View File

@ -502,7 +502,11 @@
/* ── Karte in Hand-Slot legen ──────────────────────── */
function setHandSlot(id, card) {
handSlotState[id] = { card, currentCd: card.cooldown ?? 0 };
handSlotState[id] = {
card,
currentCd: card.cooldown ?? 0,
wasReduced: false,
};
renderHandSlot(id);
}