From 5e6fbd72d2d7a9916e3512f146ed394ff66f284b Mon Sep 17 00:00:00 2001 From: CHOMPStation2 <58959929+CHOMPStation2@users.noreply.github.com> Date: Tue, 1 Oct 2024 22:12:59 -0700 Subject: [PATCH] [MIRROR] don't have nifs stick out of heads (#9113) Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: CHOMPStation2 --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index acd0d997eb..ea41d29671 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1130,7 +1130,7 @@ var/list/visible_implants = list() for(var/obj/item/organ/external/organ in src.organs) for(var/obj/item/O in organ.implants) - if(!istype(O,/obj/item/implant) && (O.w_class > class) && !istype(O,/obj/item/material/shard/shrapnel)) + if(!istype(O,/obj/item/implant) && (O.w_class > class) && !istype(O,/obj/item/material/shard/shrapnel) && !istype(O,/obj/item/nif)) visible_implants += O return(visible_implants)