-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,7 +18,7 @@
|
||||
*/
|
||||
package com.l2jserver.gameserver.model;
|
||||
|
||||
import javolution.util.FastList;
|
||||
import java.util.ArrayList;
|
||||
|
||||
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
||||
import com.l2jserver.gameserver.network.serverpackets.RadarControl;
|
||||
@ -29,12 +29,12 @@ import com.l2jserver.gameserver.network.serverpackets.RadarControl;
|
||||
public final class L2Radar
|
||||
{
|
||||
private final L2PcInstance _player;
|
||||
private final FastList<RadarMarker> _markers;
|
||||
private final ArrayList<RadarMarker> _markers;
|
||||
|
||||
public L2Radar(L2PcInstance player)
|
||||
{
|
||||
_player = player;
|
||||
_markers = new FastList<>();
|
||||
_markers = new ArrayList<>();
|
||||
}
|
||||
|
||||
// Add a marker to player's radar
|
||||
|
Reference in New Issue
Block a user