This commit is contained in:
Guillem George 2026-02-06 16:01:28 +01:00
parent d94b679e2e
commit 450f0a2ffd

View file

@ -29,11 +29,12 @@ public class Program {
logger.info("Initializing");
if (args.length == 3) {
srvUrl = args[0] + args[1];
srvUrl = args[0] + ":" + args[1];
login = args[2];
} else {
logger.warn("No given args: using the default values");
}
logger.debug("Using server " + srvUrl + " with player " + login);
// Test
HttpResponse<JsonNode> response;