From 9860cf996eda8a8c7b80937c17b0297979cdd331 Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Tue, 24 Apr 2018 21:02:07 -0400 Subject: [PATCH] Fixes Random Plushie Spawning --- code/game/objects/items/toys.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 7d6b2f9d2dd..3382292bc3a 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -997,7 +997,7 @@ obj/item/toy/cards/deck/syndicate/black icon_state = "redfox" /obj/random/plushie/item_to_spawn() - return pick(subtypesof(/obj/item/toy/plushie)) //exclude the base type. + return pick(subtypesof(/obj/item/toy/plushie) - typesof(/obj/item/toy/plushie/fluff)) //exclude the base type. /obj/item/toy/plushie/corgi name = "corgi plushie"