client/Click(atom/A)
var/image/I
var/mob/player/P=usr
if(istype(A,/mob/units/))
if(P.selected==A)
P.selected=null
else
I=image('select.dmi',A,"blue")
P<<I
P.selected=A
I want to know how to remove the image overlay. I'm probably approaching this the wrong way.
NOTE: I don't want other players to see which units are selected.