1
0

Fixing bauserver instanciation

Dieser Commit ist enthalten in:
Travis CI 2019-06-22 22:03:39 +02:00
Ursprung b4f2a3b839
Commit ff83fa45bc

Datei anzeigen

@ -7,8 +7,8 @@ public class Bauserver extends Subserver {
private final int id; private final int id;
private final UUID owner; private final UUID owner;
public Bauserver(Servertype type, String serverName, int id, UUID owner, int port, String... command) { public Bauserver(String serverName, int id, UUID owner, int port, String... command) {
super(type, serverName, port, command); super(Servertype.BAUSERVER, serverName, port, command);
this.id = id; this.id = id;
this.owner = owner; this.owner = owner;
} }