From a63d34630459ca414155ee44cbce3187edb3f67b Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Tue, 5 Mar 2019 17:12:38 +0100 Subject: [PATCH] Update implant.dm --- code/modules/resleeving/implant.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/resleeving/implant.dm b/code/modules/resleeving/implant.dm index 35019c4858..44048ba13d 100644 --- a/code/modules/resleeving/implant.dm +++ b/code/modules/resleeving/implant.dm @@ -108,6 +108,7 @@ var/obj/item/weapon/implant/backup/imp = imps[imps.len] if(imp.implanted(M)) + M.hasImplant = 1 imp.forceMove(M) imps -= imp imp.imp_in = M @@ -116,9 +117,9 @@ if (ishuman(M)) var/mob/living/carbon/human/H = M var/obj/item/organ/external/affected = H.get_organ(user.zone_sel.selecting) - affected.implants += imp - imp.part = affected - BITSET(H.hud_updateflag, BACKUP_HUD) + affected.implants += imp + imp.part = affected + BITSET(H.hud_updateflag, BACKUP_HUD) update()