diff options
Diffstat (limited to 'patch-remap/mache-vineflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch')
-rw-r--r-- | patch-remap/mache-vineflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/patch-remap/mache-vineflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch b/patch-remap/mache-vineflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch new file mode 100644 index 0000000000..81979f63f3 --- /dev/null +++ b/patch-remap/mache-vineflower/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch @@ -0,0 +1,36 @@ +--- a/net/minecraft/server/dedicated/DedicatedServerSettings.java ++++ b/net/minecraft/server/dedicated/DedicatedServerSettings.java +@@ -3,13 +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 source) { +- this.source = source; +- this.properties = DedicatedServerProperties.fromFile(source); ++ // 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,7 +29,7 @@ + } + + public DedicatedServerSettings update(UnaryOperator<DedicatedServerProperties> propertiesOperator) { +- (this.properties = propertiesOperator.apply(this.properties)).store(this.source); ++ (this.properties = (DedicatedServerProperties) propertiesOperator.apply(this.properties)).store(this.source); + return this; + } + } |