ID:175396
 
client.Center()
src.fire()


mob/proc/fire()
world << "FIRE POW!"
for(var/obj/fire/F in src.loc)
walk(F,src.dir,0)

How come this isn't working?
Texter wrote:
client.Center()
src.mob.fire()


mob/proc/fire()
world << "FIRE POW!"
for(var/obj/fire/F in src.loc)
walk(F,src.dir,0)

How come this isn't working?

Walk wasn't indented and I think it has to be src.mob.fire().
Src would be client and client wouldn't have the fire proc.