From e1355be043f02b3406c30d0e0322f308cf267b4a Mon Sep 17 00:00:00 2001 From: cib Date: Wed, 23 May 2012 19:00:57 +0200 Subject: [PATCH] Fixed the dumbest way to find a rune in src.loc ever. --- code/modules/mob/living/carbon/human/life.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index e3580ea3a7c..cafcd1b7439 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1183,8 +1183,8 @@ see_in_dark = 2 var/seer = 0 - for(var/obj/effect/rune/R in world) - if(loc==R.loc && R.word1==wordsee && R.word2==wordhell && R.word3==wordjoin) + for(var/obj/effect/rune/R in loc) + if(R.word1==wordsee && R.word2==wordhell && R.word3==wordjoin) seer = 1 if(!seer) see_invisible = 0