PvP_Locate(list/_side1, list/_side2)
var/mob/t = _side1[1]
var/mob/r = _side2[1]
for(var/mob/m in _side1)
m.client.eye = r.loc
m.icon = 'playericons.dmi'
for(var/mob/m in _side2)
m.client.eye = t.loc
m.icon = 'playericons.dmi'
This code works perfectly fine, it's just as I stated above, I only see a black screen until the mob is within 10 tiles of the eye. Perhaps this is a BYOND bug? Or maybe I am just overlooking something, after all it is 5am and I havn't slept yet... Any ideas?