Skip to content

Commit

Permalink
Made telepathy LOS only to compensate for no cooldown.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZomgPonies committed Nov 21, 2015
1 parent d31d84a commit c87b7f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/dna/genes/vg_powers.dm
Expand Up @@ -222,14 +222,14 @@ Obviously, requires DNA2.
/obj/effect/proc_holder/spell/targeted/remotetalk/choose_targets(mob/user = usr)
var/list/targets = new /list()
var/list/validtargets = new /list()
for(var/mob/M in living_mob_list)
for(var/mob/M in view(user.client.view, user))
if(M && M.mind)
if(M.z != user.z || isNonCrewAntag(M))
if(M == user)
continue

validtargets += M

if(!validtargets.len || validtargets.len == 1)
if(!validtargets.len)
usr << "<span class='warning'>There are no valid targets!</span>"
start_recharge()
return
Expand Down

0 comments on commit c87b7f2

Please sign in to comment.