summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 8942c4c1a..4e97c1bef 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -1045,7 +1045,10 @@ int mob_randomwalk(struct mob_data *md,int tick)
nullpo_retr(0, md);
- if(DIFF_TICK(md->next_walktime,tick)>0 || md->state.no_random_walk || !unit_can_move(&md->bl))
+ if(DIFF_TICK(md->next_walktime,tick)>0 ||
+ md->state.no_random_walk ||
+ !unit_can_move(&md->bl) ||
+ !(status_get_mode(&md->bl)&MD_CANMOVE))
return 0;
d =12-md->move_fail_count;