ID:142183
 
Code:
mob
proc/Death(var/mob/M,var/damage)
M.health = M.health - damage
if(M.health < 1)
world << "[M] dies in the hands of [usr]!"
M.loc = locate(1,1,1)
M.health = 100


Problem description:
Naruto.dm:1:error: world: expected end of statement


The error is located at the last part of a .dm file preceding 'Naruto.dm'.
In response to Jemai1
There seems nothing is wrong in there and that is the only code in there