diff options
author | cannelle <starfish2700@gmail.com> | 2013-09-27 16:25:19 -0500 |
---|---|---|
committer | cannelle <starfish2700@gmail.com> | 2013-09-27 16:25:19 -0500 |
commit | af4d9171df5631968b8e20660856828b5bb346ab (patch) | |
tree | d31bbae5369a778a8d8b1530eda0983369829c37 /src/map/mob.c | |
parent | 6b00c1c8ef7ebe324c6c02f5a9f1abf9eeb3a581 (diff) | |
download | hercules-af4d9171df5631968b8e20660856828b5bb346ab.tar.gz hercules-af4d9171df5631968b8e20660856828b5bb346ab.tar.bz2 hercules-af4d9171df5631968b8e20660856828b5bb346ab.tar.xz hercules-af4d9171df5631968b8e20660856828b5bb346ab.zip |
Corrected mob_warpslave_sub call with CLR_TELEPORT instead of CLR_RESPAWN.
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 8e956adc1..f6938f7b7 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2781,7 +2781,7 @@ int mob_warpslave_sub(struct block_list *bl,va_list ap) { return 0; map->search_freecell(master, 0, &x, &y, range, range, 0); - unit->warp(&md->bl, master->m, x, y,CLR_RESPAWN); + unit->warp(&md->bl, master->m, x, y,CLR_TELEPORT); return 1; } |