ID:151028
 
verb/Heal()(mob/M as mob in oview(3))
M.health += 10
return

whats wrong?
On 6/1/01 5:08 pm Sariat wrote:
verb/Heal()(mob/M as mob in oview(3))
M.health += 10
return

whats wrong?

You appear to have twice as much space in your 2nd indent than you do in your first. If you're using tabs to indent, you should only ever use one tab at a time.
In response to Leftley
On 6/1/01 5:17 pm Leftley wrote:
On 6/1/01 5:08 pm Sariat wrote:
verb/Heal()(mob/M as mob in oview(3))
M.health += 10
return

whats wrong?

You appear to have twice as much space in your 2nd indent than you do in your first. If you're using tabs to indent, you should only ever use one tab at a time.

Also note that he has two pairs of parentheses.

The appropriate line should be:

verb/Heal(mob/M as mob in oview(3))