mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Removed duplicate CommandProcessor. It is held by the Server object now. GetSession by name now ignores case.
This commit is contained in:
@@ -63,14 +63,14 @@ namespace FFXIVClassic_Map_Server
|
||||
if (startServer)
|
||||
{
|
||||
Server server = new Server();
|
||||
CommandProcessor cp = new CommandProcessor();
|
||||
|
||||
server.StartServer();
|
||||
|
||||
while (startServer)
|
||||
{
|
||||
String input = Console.ReadLine();
|
||||
Log.Info("[Console Input] " + input);
|
||||
cp.DoCommand(input, null);
|
||||
Server.GetCommandProcessor().DoCommand(input, null);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user