From 5e8209a6e9a6e8c5510b2ae12e5ed251fe025040 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Thu, 18 Feb 2021 17:44:33 +0300 Subject: [PATCH] Update code/modules/tcg/cards.dm Co-authored-by: Letter N <24603524+LetterN@users.noreply.github.com> --- code/modules/tcg/cards.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/tcg/cards.dm b/code/modules/tcg/cards.dm index 36866bdd90..9f9a18b662 100644 --- a/code/modules/tcg/cards.dm +++ b/code/modules/tcg/cards.dm @@ -624,7 +624,7 @@ user.put_in_hands(choice) cards.Remove(choice) - if(choice && choice in decks) + if(choice && (choice in decks)) var/obj/item/tcgcard_deck/new_deck = new(get_turf(user)) var/list/required_cards = decks[choice] for(var/obj/item/tcg_card/card in cards)