From d0c84599e55de78b00271981ed0a7a1089a272ee Mon Sep 17 00:00:00 2001 From: spessbandit <55415991+spessbandit@users.noreply.github.com> Date: Fri, 25 Oct 2019 02:09:41 -0400 Subject: [PATCH] Humanizing a monkey no longer yeets any buried smuggler's satchels from the tile onto their person. (#47298) * adds blacklist to humanize equip * we can use anchored after all what FUN piece of lsownlelcowert --- code/modules/mob/transform_procs.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index e3137c79c2f..f9ed1373771 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -206,8 +206,11 @@ invisibility = INVISIBILITY_MAXIMUM new /obj/effect/temp_visual/monkeyify/humanify(loc) sleep(22) + var/mob/living/carbon/human/O = new( loc ) for(var/obj/item/C in O.loc) + if(C.anchored) + continue O.equip_to_appropriate_slot(C) dna.transfer_identity(O)