ID:269348
 
    if(src.dir == NORTH)
new /mob/Monsters/Goop(locate(src.x, src.y+1, src.z,))


How would I make the newly created "Goop" face south?
    if(src.dir == NORTH)
var/mob/Goop = new /mob/Monsters/Goop(locate(src.x, src.y+1, src.z,))
Goop.dir = src.dir
In response to ITG Master
Okay, thanks. I knew it was soemwhere among those lines, but couldn't get it heh.
Mecha Destroyer JD wrote:
>   if(src.dir == NORTH)
> new /mob/Monsters/Goop(locate(src.x, src.y+1, src.z,))
>

How would I make the newly created "Goop" face south?

Better questions: What's with the extra comma, and why aren't you using get_step()?

var/mob/Monsters/Goop/G = new(get_step(src, dir))
G.dir = turn(dir, 180)


Lummox JR