-Dropped Javolution.
-Removal of Q00344_1000YearsTheEndOfLamentation. -Fixed starting conditions for Q00144_PailakaInjuredDragon. -Fixed starting conditions for last Seven Sign quests. -Added missing MonasteryOfSilence.xml instance spawns and doors. -Removed many catacomb spawns.
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
*/
|
||||
package com.l2jserver.gameserver.model.entity;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@@ -25,8 +26,6 @@ import java.util.Map.Entry;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import javolution.util.FastMap;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
import com.l2jserver.gameserver.cache.HtmCache;
|
||||
import com.l2jserver.gameserver.data.xml.impl.DoorData;
|
||||
@@ -188,7 +187,7 @@ public class TvTEvent
|
||||
setState(EventState.STARTING);
|
||||
|
||||
// Randomize and balance team distribution
|
||||
Map<Integer, L2PcInstance> allParticipants = new FastMap<>();
|
||||
Map<Integer, L2PcInstance> allParticipants = new HashMap<>();
|
||||
allParticipants.putAll(_teams[0].getParticipatedPlayers());
|
||||
allParticipants.putAll(_teams[1].getParticipatedPlayers());
|
||||
_teams[0].cleanMe();
|
||||
|
Reference in New Issue
Block a user