Fixes remote viewing on CentCom z-level, and all the others too.

This commit is contained in:
Ren Erthilo
2012-05-01 21:06:44 +01:00
parent 3f14b794c0
commit 1c21fca311
3 changed files with 24 additions and 20 deletions

View File

@@ -2806,6 +2806,9 @@ It can still be worn/put on as normal.
var/list/mob/creatures = list()
for(var/mob/living/carbon/h in world)
var/turf/temp_turf = get_turf(h)
if(temp_turf.z != 1 && temp_turf.z != 5) //Not on mining or the station.
continue
creatures += h
var/mob/target = input ("Who do you want to project your mind to ?") as mob in creatures