Browse Source

Corrected mob_warpslave_sub call with CLR_TELEPORT instead of CLR_RESPAWN.

cannelle 11 years ago
parent
commit
2a41ebcf75
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/map/mob.c

+ 1 - 1
src/map/mob.c

@@ -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;
 }