-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:
@@ -23,13 +23,12 @@ import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.util.Calendar;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ScheduledFuture;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import javolution.util.FastMap;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
import com.l2jserver.L2DatabaseFactory;
|
||||
import com.l2jserver.gameserver.ThreadPoolManager;
|
||||
@@ -49,10 +48,10 @@ public class RaidBossSpawnManager
|
||||
{
|
||||
private static final Logger _log = Logger.getLogger(RaidBossSpawnManager.class.getName());
|
||||
|
||||
protected static final Map<Integer, L2RaidBossInstance> _bosses = new FastMap<>();
|
||||
protected static final Map<Integer, L2Spawn> _spawns = new FastMap<>();
|
||||
protected static final Map<Integer, StatsSet> _storedInfo = new FastMap<>();
|
||||
protected static final Map<Integer, ScheduledFuture<?>> _schedules = new FastMap<>();
|
||||
protected static final Map<Integer, L2RaidBossInstance> _bosses = new HashMap<>();
|
||||
protected static final Map<Integer, L2Spawn> _spawns = new HashMap<>();
|
||||
protected static final Map<Integer, StatsSet> _storedInfo = new HashMap<>();
|
||||
protected static final Map<Integer, ScheduledFuture<?>> _schedules = new HashMap<>();
|
||||
|
||||
public static enum StatusEnum
|
||||
{
|
||||
|
Reference in New Issue
Block a user