mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-01 21:12:27 +00:00
Fixed some lag caused by improper usage of loops. Enjoy.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3764 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -916,9 +916,9 @@
|
||||
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)
|
||||
seer = 1
|
||||
var/obj/effect/rune/R = locate() in loc
|
||||
if (istype(R) && R.word1 == wordsee && R.word2 == wordhell && R.word3 == wordjoin)
|
||||
seer = 1
|
||||
if(!seer)
|
||||
see_invisible = 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user