瀏覽代碼

Corrected mob_warpslave_sub call with CLR_TELEPORT instead of CLR_RESPAWN.

cannelle 11 年之前
父節點
當前提交
2a41ebcf75
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
 }