Browse Source

Typo fix in MinionList, thanks principedetinieblas.

_DS_ 14 years ago
parent
commit
cdbcc64305
1 changed files with 1 additions and 1 deletions
  1. 1 1
      L2_GameServer/java/com/l2jserver/gameserver/util/MinionList.java

+ 1 - 1
L2_GameServer/java/com/l2jserver/gameserver/util/MinionList.java

@@ -180,7 +180,7 @@ public class MinionList
 
 		final int time = respawnTime < 0 ? _master.isRaid() ? (int)Config.RAID_MINION_RESPAWN_TIMER : 0 : respawnTime;
 		if (time > 0 && !_master.isAlikeDead())
-			ThreadPoolManager.getInstance().scheduleGeneral(new MinionRespawnTask(minion), respawnTime);
+			ThreadPoolManager.getInstance().scheduleGeneral(new MinionRespawnTask(minion), time);
 	}
 
 	/**