fix: fixed listen address of the server from localhost to 0.0.0.0

This commit is contained in:
Yannik Bretschneider 2021-06-05 04:15:31 +02:00
parent c6861f3178
commit 93bd3fe99d
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class Server {
System.exit(0);
}
InetSocketAddress address = new InetSocketAddress("localhost", serverArgs.getPort());
InetSocketAddress address = new InetSocketAddress(serverArgs.getPort());
Logger.trace("Inet address {} created", address);
var json = new JSON(characterConfig);