Bot implementiert

This commit is contained in:
erenk 2025-02-10 15:53:56 +01:00
parent 21034d5255
commit bb4cd98c0f

View File

@ -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;
}