Mower doesn't do what it's supposed to. in Developer Help
|
|
Code:
mob verb Use_Self_Propelled_Mower() if(usr.Mowing) usr.icon_state = "" usr.Mowing = 0 else if(!usr.Mowing) usr.icon_state = "Mowing" usr.Mowing = 1 for(var/turf/Grass/G in oview()) if(!G.Cut) walk_to(src,G) else if(G.Cut) return
|
Problem description:
I can't figure out how to make it continue going to the un-cut grass if there is any left, it'll cut like 3-5 tiles, then it just stops..
~C
|