diff options
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 40bf82cb6..f279346d8 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -612,7 +612,11 @@ int mob_can_reach(struct mob_data *md,struct block_list *bl,int range, int state easy = 1;
break;
}
-
+#ifdef CELL_NOSTACK
+ //In no stack mode, do these path searches ignoring other players as it's just
+ //for reachability judging, not the actual path used. [Skotlex]
+ easy |= 0x30000;
+#endif
if( md->bl.m != bl->m) // ˆá‚¤ƒƒbƒv
return 0;
|