mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Undo: uncommented RCON server
This commit is contained in:
parent
50c7b1d3f4
commit
97f4dd17e1
@ -118,13 +118,13 @@ public final class Emulator {
|
|||||||
Emulator.texts = new TextsManager();
|
Emulator.texts = new TextsManager();
|
||||||
new CleanerThread();
|
new CleanerThread();
|
||||||
Emulator.gameServer = new GameServer(getConfig().getValue("game.host", "127.0.0.1"), getConfig().getInt("game.port", 30000));
|
Emulator.gameServer = new GameServer(getConfig().getValue("game.host", "127.0.0.1"), getConfig().getInt("game.port", 30000));
|
||||||
//Emulator.rconServer = new RCONServer(getConfig().getValue("rcon.host", "127.0.0.1"), getConfig().getInt("rcon.port", 30001));
|
Emulator.rconServer = new RCONServer(getConfig().getValue("rcon.host", "127.0.0.1"), getConfig().getInt("rcon.port", 30001));
|
||||||
Emulator.gameEnvironment = new GameEnvironment();
|
Emulator.gameEnvironment = new GameEnvironment();
|
||||||
Emulator.gameEnvironment.load();
|
Emulator.gameEnvironment.load();
|
||||||
Emulator.gameServer.initializePipeline();
|
Emulator.gameServer.initializePipeline();
|
||||||
Emulator.gameServer.connect();
|
Emulator.gameServer.connect();
|
||||||
//Emulator.rconServer.initializePipeline();
|
Emulator.rconServer.initializePipeline();
|
||||||
//Emulator.rconServer.connect();
|
Emulator.rconServer.connect();
|
||||||
Emulator.badgeImager = new BadgeImager();
|
Emulator.badgeImager = new BadgeImager();
|
||||||
Emulator.getLogging().logStart("Arcturus Morningstar has succesfully loaded. You're running: " + Emulator.version);
|
Emulator.getLogging().logStart("Arcturus Morningstar has succesfully loaded. You're running: " + Emulator.version);
|
||||||
Emulator.getLogging().logStart("System launched in: " + (System.nanoTime() - startTime) / 1e6 + "ms. Using: " + (Runtime.getRuntime().availableProcessors() * 2) + " threads!");
|
Emulator.getLogging().logStart("System launched in: " + (System.nanoTime() - startTime) / 1e6 + "ms. Using: " + (Runtime.getRuntime().availableProcessors() * 2) + " threads!");
|
||||||
|
Loading…
Reference in New Issue
Block a user