From 6b9e42d0ed8b0cbc1ea21fa3cc1745d842e188ec Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Fri, 19 Dec 2025 10:11:49 -0500 Subject: [PATCH] Blacklists TCG card decks from spawners (#94535) ## About The Pull Request Empty TCG card decks cannot appear in spawners anymore ## Why It's Good For The Game getting the concept of trading cards but no cards for christmas is a pretty unthoughtful gift ## Changelog :cl: fix: Empty TCG game decks will no longer appear in presents /:cl: --- code/game/objects/items/tcg/tcg.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/tcg/tcg.dm b/code/game/objects/items/tcg/tcg.dm index 75544b7ae1b..0f22083f67b 100644 --- a/code/game/objects/items/tcg/tcg.dm +++ b/code/game/objects/items/tcg/tcg.dm @@ -188,6 +188,7 @@ GLOBAL_LIST_EMPTY(tcgcard_radial_choices) icon_state = "deck_up" base_icon_state = "deck" obj_flags = UNIQUE_RENAME + spawn_blacklisted = TRUE var/flipped = FALSE var/static/radial_draw = image(icon = 'icons/hud/radial.dmi', icon_state = "radial_draw") var/static/radial_shuffle = image(icon = 'icons/hud/radial.dmi', icon_state = "radial_shuffle")