geforkt von SteamWar/PersistentBungeeCore
Removing Bauserverid
Dieser Commit ist enthalten in:
Ursprung
d91df764dc
Commit
0d13d3cbb3
@ -4,18 +4,13 @@ import java.util.UUID;
|
|||||||
|
|
||||||
public class Bauserver extends Subserver {
|
public class Bauserver extends Subserver {
|
||||||
|
|
||||||
private final int id;
|
|
||||||
private final UUID owner;
|
private final UUID owner;
|
||||||
|
|
||||||
public Bauserver(String serverName, int id, UUID owner, int port, String... command) {
|
public Bauserver(String serverName, UUID owner, int port, String... command) {
|
||||||
super(Servertype.BAUSERVER, serverName, port, command);
|
super(Servertype.BAUSERVER, serverName, port, command);
|
||||||
this.id = id;
|
|
||||||
this.owner = owner;
|
this.owner = owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getId(){
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
public UUID getOwner(){
|
public UUID getOwner(){
|
||||||
return owner;
|
return owner;
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren