for(var/i = 0, i<15, i++)
sleep(10)
var/mob/monster/warrior/A = new(locate(4,13,1))
A.dir = SOUTH
var/mob/monster/warrior/B = new(locate(4,1,1))
B.dir = NORTH
var/mob/monster/warrior/C = new(locate(1,6,1))
C.dir = EAST
var/mob/monster/warrior/D = new(locate(1,7,1))
D.dir = EAST
Problem description:
The code should produce 60 warriors, 4 at a time, with a one second gap. For some reason, it only produces 1 warrior. (at 4,13,1 facing south, like it should, but doesnt create the other three or loop)