-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,17 +18,16 @@
|
||||
*/
|
||||
package com.l2jserver.gameserver.model;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javolution.util.FastList;
|
||||
|
||||
import com.l2jserver.gameserver.enums.SiegeClanType;
|
||||
import com.l2jserver.gameserver.model.actor.L2Npc;
|
||||
|
||||
public class L2SiegeClan
|
||||
{
|
||||
private int _clanId = 0;
|
||||
private List<L2Npc> _flag = new FastList<>();
|
||||
private List<L2Npc> _flag = new ArrayList<>();
|
||||
private int _numFlagsAdded = 0;
|
||||
private SiegeClanType _type;
|
||||
|
||||
@ -88,7 +87,7 @@ public class L2SiegeClan
|
||||
{
|
||||
if (_flag == null)
|
||||
{
|
||||
_flag = new FastList<>();
|
||||
_flag = new ArrayList<>();
|
||||
}
|
||||
return _flag;
|
||||
}
|
||||
|
Reference in New Issue
Block a user