ID:178610
 
this is my code for my verb "attack" It looks fine to me but when I compile it says inconsistent indentation on the
usr<<"You attack [M]!" what am I doing wrong

verb

attack(mob/M as mob in oview(1))
usr<<"You attack [M]!"
oview()<<"[usr] attacks [M]!"
var/damage=rand(1,10)
world<<"[damage] Damage!"
M.HP -= damage
M.DeathCheck()
if (HP <=0)
world<<"[src] has perished!"
It looks like the line in question has one space in it, line it up with all the other lines, amd make sure the whitespace is all from tabs, and not spaces.
Press the backspace button behind the usr << "blah" that should solve it.

Lee