aboutsummaryrefslogtreecommitdiffhomepage
path: root/patch-remap/mache-spigotflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch
diff options
context:
space:
mode:
authorMiniDigger | Martin <[email protected]>2024-01-14 11:04:49 +0100
committerMiniDigger | Martin <[email protected]>2024-01-14 11:04:49 +0100
commitbee74680e607c2e29b038329f62181238911cd83 (patch)
tree708fd1a4a0227d9071243adf2a42d5e9e96cde4a /patch-remap/mache-spigotflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch
parent0a44692ef6ff6e255d48eb3ba1bb114166eafda9 (diff)
downloadPaper-softspoon.tar.gz
Paper-softspoon.zip
add remapped patches as a testsoftspoon
Diffstat (limited to 'patch-remap/mache-spigotflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch')
-rw-r--r--patch-remap/mache-spigotflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/patch-remap/mache-spigotflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch b/patch-remap/mache-spigotflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch
new file mode 100644
index 0000000000..28aed34995
--- /dev/null
+++ b/patch-remap/mache-spigotflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch
@@ -0,0 +1,38 @@
+--- a/net/minecraft/server/dedicated/DedicatedServerSettings.java
++++ b/net/minecraft/server/dedicated/DedicatedServerSettings.java
+@@ -3,14 +3,21 @@
+ import java.nio.file.Path;
+ import java.util.function.UnaryOperator;
+
++// CraftBukkit start
++import java.io.File;
++import joptsimple.OptionSet;
++// CraftBukkit end
++
+ public class DedicatedServerSettings {
+
+ private final Path source;
+ private DedicatedServerProperties properties;
+
+- public DedicatedServerSettings(Path path) {
+- this.source = path;
+- this.properties = DedicatedServerProperties.fromFile(path);
++ // CraftBukkit start
++ public DedicatedServerSettings(OptionSet optionset) {
++ this.source = ((File) optionset.valueOf("config")).toPath();
++ this.properties = DedicatedServerProperties.fromFile(source, optionset);
++ // CraftBukkit end
+ }
+
+ public DedicatedServerProperties getProperties() {
+@@ -21,8 +28,8 @@
+ this.properties.store(this.source);
+ }
+
+- public DedicatedServerSettings update(UnaryOperator<DedicatedServerProperties> unaryoperator) {
+- (this.properties = (DedicatedServerProperties) unaryoperator.apply(this.properties)).store(this.source);
++ public DedicatedServerSettings update(UnaryOperator<DedicatedServerProperties> propertiesOperator) {
++ (this.properties = (DedicatedServerProperties) propertiesOperator.apply(this.properties)).store(this.source);
+ return this;
+ }
+ }