From 215fd0465885895dd7d9e0cd4e44f8447adebe7c Mon Sep 17 00:00:00 2001 From: "C.L" Date: Mon, 8 Aug 2022 02:01:53 -0400 Subject: [PATCH] Makes you able to select the borg plushies Without a name, nothing but the 'robot plushie' itself was selectable in the plushie menu because there was no names to pick. This fixes that. I want my medical drake plushie NOW. --- code/game/objects/items/toys/toys_vr.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/items/toys/toys_vr.dm b/code/game/objects/items/toys/toys_vr.dm index d72da2a7cb..c4daff4dce 100644 --- a/code/game/objects/items/toys/toys_vr.dm +++ b/code/game/objects/items/toys/toys_vr.dm @@ -87,16 +87,20 @@ attack_verb = list("beeped", "booped", "pinged") /obj/item/toy/plushie/borgplushie/medihound + name = "medihound plushie" icon_state = "medihound" /obj/item/toy/plushie/borgplushie/scrubpuppy + name = "janihound plushie" icon_state = "scrubpuppy" /obj/item/toy/plushie/borgplushie/drakiesec + name = "security drake plushie" icon = 'icons/obj/drakietoy_vr.dmi' icon_state = "secdrake" /obj/item/toy/plushie/borgplushie/drakiemed + name = "medical drake plushie" icon = 'icons/obj/drakietoy_vr.dmi' icon_state = "meddrake"