Update to Minecraft 1.16.1

This commit is contained in:
md_5
2020-06-25 10:00:00 +10:00
parent be6aaf046e
commit 7ea3c040bc
424 changed files with 5960 additions and 5636 deletions

View File

@@ -12,9 +12,9 @@
public final boolean onlineMode = this.getBoolean("online-mode", true);
public final boolean preventProxyConnections = this.getBoolean("prevent-proxy-connections", false);
public final String serverIp = this.getString("server-ip", "");
@@ -52,8 +54,10 @@
public final PropertyManager<DedicatedServerProperties>.EditableProperty<Integer> playerIdleTimeout;
@@ -53,8 +55,10 @@
public final PropertyManager<DedicatedServerProperties>.EditableProperty<Boolean> whiteList;
public final GeneratorSettings generatorSettings;
- public DedicatedServerProperties(Properties properties) {
- super(properties);
@@ -25,8 +25,8 @@
this.difficulty = (EnumDifficulty) this.a("difficulty", a(EnumDifficulty::getById, EnumDifficulty::a), EnumDifficulty::c, EnumDifficulty.EASY);
this.gamemode = (EnumGamemode) this.a("gamemode", a(EnumGamemode::getById, EnumGamemode::a), EnumGamemode::b, EnumGamemode.SURVIVAL);
this.levelName = this.getString("level-name", "world");
@@ -98,12 +102,14 @@
this.whiteList = this.b("white-list", false);
@@ -103,12 +107,14 @@
this.generatorSettings = GeneratorSettings.a(properties);
}
- public static DedicatedServerProperties load(java.nio.file.Path java_nio_file_path) {