mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
Replace a net.minecraft accessor with a public attr.
This commit is contained in:
parent
5aa95ee469
commit
f789c9e744
@ -29,7 +29,7 @@ public class ServerConfigurationManager {
|
||||
public List b = new ArrayList();
|
||||
public MinecraftServer c; // Craftbukkit - public
|
||||
// public PlayerManager d; // Craftbukkit - removed!
|
||||
private int e;
|
||||
public int e; // Craftbukkit - public
|
||||
private Set f = new HashSet();
|
||||
private Set g = new HashSet();
|
||||
private Set h = new HashSet();
|
||||
@ -41,10 +41,6 @@ public class ServerConfigurationManager {
|
||||
// CraftBukkit start
|
||||
private CraftServer server;
|
||||
|
||||
public int getMaxPlayers() {
|
||||
return this.e;
|
||||
}
|
||||
|
||||
public ServerConfigurationManager(MinecraftServer minecraftserver) {
|
||||
minecraftserver.server = new CraftServer(minecraftserver, this);
|
||||
server = minecraftserver.server;
|
||||
|
@ -148,7 +148,7 @@ public final class CraftServer implements Server {
|
||||
}
|
||||
|
||||
public int getMaxPlayers() {
|
||||
return server.getMaxPlayers();
|
||||
return server.e;
|
||||
}
|
||||
|
||||
public PluginManager getPluginManager() {
|
||||
|
Loading…
Reference in New Issue
Block a user