mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 19:55:52 -07:00
Begin 1.21.6-pre1
Initial move of patches to rejected and non rejected source patches to publish to patch-roulette.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
--- a/net/minecraft/server/dedicated/DedicatedServerProperties.java
|
||||
+++ b/net/minecraft/server/dedicated/DedicatedServerProperties.java
|
||||
@@ -45,6 +_,7 @@
|
||||
@@ -47,6 +_,7 @@
|
||||
static final Logger LOGGER = LogUtils.getLogger();
|
||||
private static final Pattern SHA1 = Pattern.compile("^[a-fA-F0-9]{40}$");
|
||||
private static final Splitter COMMA_SPLITTER = Splitter.on(',').trimResults();
|
||||
@@ -8,7 +8,7 @@
|
||||
public final boolean onlineMode = this.get("online-mode", true);
|
||||
public final boolean preventProxyConnections = this.get("prevent-proxy-connections", false);
|
||||
public final String serverIp = this.get("server-ip", "");
|
||||
@@ -85,7 +_,7 @@
|
||||
@@ -87,7 +_,7 @@
|
||||
public final boolean broadcastRconToOps = this.get("broadcast-rcon-to-ops", true);
|
||||
public final boolean broadcastConsoleToOps = this.get("broadcast-console-to-ops", true);
|
||||
public final int maxWorldSize = this.get("max-world-size", property -> Mth.clamp(property, 1, 29999984), 29999984);
|
||||
@@ -17,7 +17,7 @@
|
||||
public final String regionFileComression = this.get("region-file-compression", "deflate");
|
||||
public final boolean enableJmxMonitoring = this.get("enable-jmx-monitoring", false);
|
||||
public final boolean enableStatus = this.get("enable-status", true);
|
||||
@@ -99,13 +_,16 @@
|
||||
@@ -101,13 +_,16 @@
|
||||
public final Settings<DedicatedServerProperties>.MutableValue<Boolean> whiteList = this.getMutable("white-list", false);
|
||||
public final boolean enforceSecureProfile = this.get("enforce-secure-profile", true);
|
||||
public final boolean logIPs = this.get("log-ips", true);
|
||||
@@ -37,7 +37,7 @@
|
||||
String string = this.get("level-seed", "");
|
||||
boolean flag = this.get("generate-structures", true);
|
||||
long l = WorldOptions.parseSeed(string).orElse(WorldOptions.randomSeed());
|
||||
@@ -126,15 +_,21 @@
|
||||
@@ -128,15 +_,21 @@
|
||||
this.get("initial-enabled-packs", String.join(",", WorldDataConfiguration.DEFAULT.dataPacks().getEnabled())),
|
||||
this.get("initial-disabled-packs", String.join(",", WorldDataConfiguration.DEFAULT.dataPacks().getDisabled()))
|
||||
);
|
||||
|
Reference in New Issue
Block a user