mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 10:17:38 +01:00
Revert "Implements interface for changing the view distance."
By: EvilSeph <evilseph@gmail.com>
This commit is contained in:
parent
363d5d3f22
commit
6d7cc61d4d
@ -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;
|
||||
|
@ -811,24 +811,4 @@ public class CraftWorld implements World {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public int getViewDistance() {
|
||||
return world.getViewDistance();
|
||||
}
|
||||
|
||||
public void setViewDistance(int viewDistance) throws IllegalArgumentException{
|
||||
world.setViewDistance(viewDistance);
|
||||
}
|
||||
|
||||
public void resetViewDistance(){
|
||||
world.resetViewDistance();
|
||||
}
|
||||
|
||||
public boolean isViewDistanceSet() {
|
||||
return world.isViewDistanceSet();
|
||||
}
|
||||
|
||||
public void updateViewDistance() {
|
||||
world.updateViewDistance();
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,7 @@
|
||||
package org.bukkit.craftbukkit.entity;
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.SocketAddress;
|
||||
import net.minecraft.server.EntityHuman;
|
||||
import net.minecraft.server.EntityPlayer;
|
||||
import net.minecraft.server.Packet131;
|
||||
@ -26,11 +28,7 @@ import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.player.PlayerTeleportEvent;
|
||||
import org.bukkit.map.MapView;
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.SocketAddress;
|
||||
|
||||
public class CraftPlayer extends CraftHumanEntity implements Player {
|
||||
|
||||
public CraftPlayer(CraftServer server, EntityPlayer entity) {
|
||||
super(server, entity);
|
||||
}
|
||||
@ -347,20 +345,4 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
||||
public void resetPlayerTime() {
|
||||
setPlayerTime(0, true);
|
||||
}
|
||||
|
||||
public void setViewDistance(int viewDistance) {
|
||||
getHandle().setViewDistance(viewDistance);
|
||||
}
|
||||
|
||||
public int getViewDistance() {
|
||||
return getHandle().getViewDistance();
|
||||
}
|
||||
|
||||
public void resetViewDistance() {
|
||||
getHandle().resetViewDistance();
|
||||
}
|
||||
|
||||
public boolean isViewDistanceSet() {
|
||||
return getHandle().isViewDistanceSet();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user