From 7bfe2a104084912950aba823cc9fae966284b1af Mon Sep 17 00:00:00 2001 From: VampyrBytes Date: Fri, 19 Feb 2016 10:41:15 +0000 Subject: [PATCH] strips testing variable --- code/modules/awaymissions/gateway.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm index 1fe4c550f9a..18d86ff51a9 100644 --- a/code/modules/awaymissions/gateway.dm +++ b/code/modules/awaymissions/gateway.dm @@ -244,12 +244,9 @@ obj/machinery/gateway/centerstation/process() M.dir = SOUTH /obj/machinery/gateway/centeraway/proc/exilecheck(var/mob/living/carbon/M) - var/found = 0 for(var/obj/item/weapon/implant/exile/E in M)//Checking that there is an exile implant in the contents if(E.imp_in == M)//Checking that it's actually implanted vs just in their pocket - if(!(found)) - M << "\black The station gate has detected your exile implant and is blocking your entry." - found = 1 + M << "\black The station gate has detected your exile implant and is blocking your entry." return 1 return 0