From b33a85faab1054cc53f4658beefb29c0892341dc Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Sun, 12 Jan 2025 23:58:13 +0100 Subject: [PATCH] Update cards.dm --- code/modules/games/cards.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/games/cards.dm b/code/modules/games/cards.dm index 283acc5cfea..1a065d10b10 100644 --- a/code/modules/games/cards.dm +++ b/code/modules/games/cards.dm @@ -377,7 +377,7 @@ var/pickablecards = list() for(var/datum/playingcard/P in cards) - pickablecards[P.name] += P + pickablecards[P.name] = P var/pickedcard = tgui_input_list(usr, "Which card do you want to remove from the hand?", "Card Selection", pickablecards) if(!pickedcard || !pickablecards[pickedcard] || !usr || !src) return