ID:266625
 
I was told before but I forgot what it was. How do I remove the usr from for(var/mob/M in oview(7))?
if(M!=src)
Usr is automatically removed from oview(). That's what oview() is. view() is the one that contains usr.

Technically, it disincludes the second argument used in the proc, so oview(7,M) would not include M, just everything within 7 squares around M.