ID:142002
 
Code:
var/objects = typesof(src.ally.allies)
var/objectz = typesof(M.enemy.enemies)

src.client.screen += objects
src.client.screen += objectz
objects.screen_loc = "3,4"


Problem description:
Screen loc isn't a variable even though objects is in the screen.
You need to typecast in order to have access to that variable.
In response to Popisfizzy
typecast?
In response to Choka