Corrected mob_warpslave_sub call with CLR_TELEPORT instead of CLR_RESPAWN.

This commit is contained in:
cannelle 2013-09-27 17:13:52 -05:00
parent 179ab138a3
commit 2a41ebcf75

View File

@ -2815,7 +2815,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;
}