mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07:06 +01:00
Replace a net.minecraft accessor with a public attr.
This commit is contained in:
parent
5aa95ee469
commit
f789c9e744
2 changed files with 2 additions and 6 deletions
|
@ -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 a new issue