From 75c962ef7ba95362f54ec83ed2a7e2ab12edd341 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 12 Jul 2020 20:18:49 +0100 Subject: [PATCH] handle removal --- code/game/objects/items/miscellaneous.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index 827a3dc5db..a7f7e3152c 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -184,6 +184,9 @@ //snowflake plush var/obj/item/toy/plush/snowflake_plushie = new(get_turf(M)) snowflake_plushie.set_snowflake_from_config(choice) + M.temporarilyRemoveItemFromInventory(src, TRUE) + M.put_in_hands(new choice) + qdel(src) /obj/item/choice_beacon/box/plushie/generate_display_names() var/list/plushie_list = list()