mob
verb
Slash(mob/M as mob in get_step(src,src.dir))
set category="Fighting"
if(istype(M,/mob/))
flick("slash",usr)
var/damage=round(usr.str-M.def/2)
if(damage <= 0)
damage = 1
M.hp-=damage
say()<<"[usr] attacked [M] with his fury inflicting <font color=red>[damage]</font> damage!"
M.Death(usr)
else
return
Obviously flick replaces the mob. So what could I do to this code to make it do the same thing as flick, but without replacing the mob?