-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:
@@ -19,11 +19,10 @@
|
||||
package com.l2jserver.gameserver.engines.skills;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import javolution.util.FastList;
|
||||
|
||||
import org.w3c.dom.Document;
|
||||
import org.w3c.dom.NamedNodeMap;
|
||||
import org.w3c.dom.Node;
|
||||
@@ -54,12 +53,12 @@ public class DocumentSkill extends DocumentBase
|
||||
public StatsSet[] enchsets7;
|
||||
public StatsSet[] enchsets8;
|
||||
public int currentLevel;
|
||||
public List<Skill> skills = new FastList<>();
|
||||
public List<Skill> currentSkills = new FastList<>();
|
||||
public List<Skill> skills = new ArrayList<>();
|
||||
public List<Skill> currentSkills = new ArrayList<>();
|
||||
}
|
||||
|
||||
private SkillInfo _currentSkill;
|
||||
private final List<Skill> _skillsInFile = new FastList<>();
|
||||
private final List<Skill> _skillsInFile = new ArrayList<>();
|
||||
|
||||
public DocumentSkill(File file)
|
||||
{
|
||||
@@ -1491,7 +1490,7 @@ public class DocumentSkill extends DocumentBase
|
||||
private void makeSkills()
|
||||
{
|
||||
int count = 0;
|
||||
_currentSkill.currentSkills = new FastList<>(_currentSkill.sets.length + _currentSkill.enchsets1.length + _currentSkill.enchsets2.length + _currentSkill.enchsets3.length + _currentSkill.enchsets4.length + _currentSkill.enchsets5.length + _currentSkill.enchsets6.length + _currentSkill.enchsets7.length + _currentSkill.enchsets8.length);
|
||||
_currentSkill.currentSkills = new ArrayList<>(_currentSkill.sets.length + _currentSkill.enchsets1.length + _currentSkill.enchsets2.length + _currentSkill.enchsets3.length + _currentSkill.enchsets4.length + _currentSkill.enchsets5.length + _currentSkill.enchsets6.length + _currentSkill.enchsets7.length + _currentSkill.enchsets8.length);
|
||||
StatsSet set;
|
||||
for (int i = 0; i < _currentSkill.sets.length; i++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user