diff --git a/Bot.java b/Bot.java index 00d90b3..9382b8b 100644 --- a/Bot.java +++ b/Bot.java @@ -19,7 +19,7 @@ public abstract class Bot { private final int port; // Port des Servers protected Bot(String[] args) { - host = args.length > 0 ? args[0] : "localhost"; + host = args.length > 0 ? args[0] : "141.75.33.181"; port = args.length > 1 ? Integer.parseInt(args[1]) : 63187; }