From af4d9171df5631968b8e20660856828b5bb346ab Mon Sep 17 00:00:00 2001 From: cannelle Date: Fri, 27 Sep 2013 16:25:19 -0500 Subject: Corrected mob_warpslave_sub call with CLR_TELEPORT instead of CLR_RESPAWN. --- src/map/mob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map') 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; } -- cgit v1.2.3-60-g2f50 From 84b3b60a846bc01a2bdefcd16f0d345bdc35edda Mon Sep 17 00:00:00 2001 From: cannelle Date: Fri, 27 Sep 2013 16:34:25 -0500 Subject: Corrected map_quit call with CLR_RESPAWN instead of CLR_TELEPORT. --- src/map/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map') diff --git a/src/map/map.c b/src/map/map.c index 09defc75a..e121f0d55 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1597,7 +1597,7 @@ int map_quit(struct map_session_data *sd) { clif->chsys_quit(sd); - unit->remove_map_pc(sd,CLR_TELEPORT); + unit->remove_map_pc(sd,CLR_RESPAWN); if( maplist[sd->bl.m].instance_id >= 0 ) { // Avoid map conflicts and warnings on next login int16 m; -- cgit v1.2.3-60-g2f50