-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,10 +18,9 @@
|
||||
*/
|
||||
package com.l2jserver.gameserver.pathfinding.cellnodes;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.concurrent.locks.ReentrantLock;
|
||||
|
||||
import javolution.util.FastList;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
|
||||
/**
|
||||
@ -113,9 +112,9 @@ public class CellNodeBuffer
|
||||
return _lastElapsedTime;
|
||||
}
|
||||
|
||||
public final FastList<CellNode> debugPath()
|
||||
public final ArrayList<CellNode> debugPath()
|
||||
{
|
||||
FastList<CellNode> result = new FastList<>();
|
||||
ArrayList<CellNode> result = new ArrayList<>();
|
||||
|
||||
for (CellNode n = _current; n.getParent() != null; n = (CellNode) n.getParent())
|
||||
{
|
||||
|
Reference in New Issue
Block a user