mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-09 00:22:08 -07:00
Revert "Implements interface for changing the view distance."
This commit is contained in:
@@ -275,6 +275,10 @@ public final class CraftServer implements Server {
|
||||
return this.getConfigInt("server-port", 25565);
|
||||
}
|
||||
|
||||
public int getViewDistance() {
|
||||
return this.getConfigInt("view-distance", 10);
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return this.getConfigString("server-ip", "");
|
||||
}
|
||||
@@ -750,22 +754,6 @@ public final class CraftServer implements Server {
|
||||
return this.console.allowFlight;
|
||||
}
|
||||
|
||||
public int getViewDistance() {
|
||||
return server.getViewDistance();
|
||||
}
|
||||
|
||||
public void setViewDistance(int viewDistance) throws IllegalArgumentException{
|
||||
server.setViewDistance(viewDistance);
|
||||
updateViewDistance();
|
||||
server.saveViewDistance();
|
||||
}
|
||||
|
||||
public void updateViewDistance() {
|
||||
for (World world : worlds.values()) {
|
||||
((CraftWorld) world).updateViewDistance();
|
||||
}
|
||||
}
|
||||
|
||||
public ChunkGenerator getGenerator(String world) {
|
||||
ConfigurationNode node = configuration.getNode("worlds");
|
||||
ChunkGenerator result = null;
|
||||
|
Reference in New Issue
Block a user