From a07683c0b8e0510231903e2511782fe693bf5fd4 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Tue, 5 Mar 2019 17:15:13 +0100 Subject: [PATCH] Now doesnt conflict with anything --- code/modules/resleeving/implant.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/resleeving/implant.dm b/code/modules/resleeving/implant.dm index 44048ba13d..fa8e5ae0dc 100644 --- a/code/modules/resleeving/implant.dm +++ b/code/modules/resleeving/implant.dm @@ -93,7 +93,7 @@ user << "\The [src] is already full!" /obj/item/weapon/backup_implanter/attack(mob/M as mob, mob/user as mob) - if (!istype(M, /mob/living/carbon) || hasImplant) + if (!istype(M, /mob/living/carbon) || hasImplant) //CHOMPEDIT: Checking if we already have an implant return if (user && imps.len) M.visible_message("[user] is injecting a backup implant into [M].") @@ -108,7 +108,7 @@ var/obj/item/weapon/implant/backup/imp = imps[imps.len] if(imp.implanted(M)) - M.hasImplant = 1 + M.hasImplant = 1 //CHOMPEDIT Chanigng our hasimplant var to 1 to symbolize we were backed up imp.forceMove(M) imps -= imp imp.imp_in = M