From 564390774f38f00fc9435776b7ff851410b6d9f3 Mon Sep 17 00:00:00 2001 From: caelaislinn Date: Mon, 25 Jun 2012 22:49:47 +1000 Subject: [PATCH] fix for "Energy radiating from the /datum/artifact_effect" Signed-off-by: caelaislinn --- code/modules/research/artifact_effect.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/artifact_effect.dm b/code/modules/research/artifact_effect.dm index 5a084b44133..4dc58e69230 100644 --- a/code/modules/research/artifact_effect.dm +++ b/code/modules/research/artifact_effect.dm @@ -228,7 +228,7 @@ for (var/mob/living/carbon/M in range(src.aurarange,originator)) if(istype(M:wear_suit,/obj/item/clothing/suit/bio_suit/anomaly) && istype(M:head,/obj/item/clothing/head/bio_hood/anomaly)) continue - if(prob(10)) M << "\red Energy radiating from the [src] is making you feel numb." + if(prob(10)) M << "\red Energy radiating from the [originator] is making you feel numb." if(prob(20)) M << "\red Your body goes numb for a moment." M.stunned += 2