-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:
mobius
2015-02-08 21:01:32 +00:00
parent 141cdc5efa
commit 012eb3ed65
201 changed files with 817 additions and 1458 deletions

View File

@ -24,12 +24,11 @@ import java.io.IOException;
import java.io.InputStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import java.util.logging.Logger;
import javolution.util.FastList;
import com.l2jserver.Config;
import com.l2jserver.Server;
import com.l2jserver.util.Rnd;
@ -123,7 +122,7 @@ public class Status extends Thread
}
statusServerSocket = new ServerSocket(statusPort);
_uptime = (int) System.currentTimeMillis();
_loginStatus = new FastList<>();
_loginStatus = new ArrayList<>();
}
private String rndPW(int length)
@ -154,7 +153,7 @@ public class Status extends Thread
public void sendMessageToTelnets(String msg)
{
List<LoginStatusThread> lsToRemove = new FastList<>();
List<LoginStatusThread> lsToRemove = new ArrayList<>();
for (LoginStatusThread ls : _loginStatus)
{
if (ls.isInterrupted())