13
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 UUID owner;
public Bauserver(Servertype type, String serverName, int id, UUID owner, int port, String... command) {
super(type, serverName, port, command);
public Bauserver(String serverName, int id, UUID owner, int port, String... command) {
super(Servertype.BAUSERVER, serverName, port, command);
this.id = id;
this.owner = owner;
}