mob/verb/engage()
for (var/mob/player/P in view(12))
P << alert("[usr] has initiated an engagement. Will you take part?", "Engagement", "Participate", "Opt Out")
Problem description:
Having a bit of trouble looping through nearby mobs with this verb. It picks up the usr and prompts them with an alert, but this message does not reach nearby players. What am I doing wrong?