-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,14 +19,13 @@
|
||||
package com.l2jserver.gameserver.script;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Enumeration;
|
||||
import java.util.List;
|
||||
import java.util.logging.Logger;
|
||||
import java.util.zip.ZipEntry;
|
||||
import java.util.zip.ZipFile;
|
||||
|
||||
import javolution.util.FastList;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
|
||||
/**
|
||||
@ -42,8 +41,8 @@ public class ScriptPackage
|
||||
|
||||
public ScriptPackage(ZipFile pack)
|
||||
{
|
||||
_scriptFiles = new FastList<>();
|
||||
_otherFiles = new FastList<>();
|
||||
_scriptFiles = new ArrayList<>();
|
||||
_otherFiles = new ArrayList<>();
|
||||
_name = pack.getName();
|
||||
addFiles(pack);
|
||||
}
|
||||
|
Reference in New Issue
Block a user