Browse Source

Corrected mob_warpslave_sub call with CLR_TELEPORT instead of CLR_RESPAWN.

cannelle 11 năm trước cách đây
mục cha
commit
2a41ebcf75
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
 }