diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-10 17:52:46 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-10 17:52:46 +0000 |
commit | cd5f05d223b9440d135539f374aa81eb4ba4801b (patch) | |
tree | fcc25e718e4b958c56b88751f7aab2c08e78a075 /src/map/mob.c | |
parent | 7eb8ad1d42c967adfafd30c13e37ab2ca26574cc (diff) | |
download | hercules-cd5f05d223b9440d135539f374aa81eb4ba4801b.tar.gz hercules-cd5f05d223b9440d135539f374aa81eb4ba4801b.tar.bz2 hercules-cd5f05d223b9440d135539f374aa81eb4ba4801b.tar.xz hercules-cd5f05d223b9440d135539f374aa81eb4ba4801b.zip |
Attempt to fix unwanted teleporting of immobile mobs
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10525 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 5 |
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; |