aboutsummaryrefslogtreecommitdiffhomepage
path: root/patch-remap/mache-vineflower-stripped/net/minecraft/server/dedicated/DedicatedServerSettings.java.patch
blob: a79b915d5f122e6d907c88bf58ccc30a64d4ca09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- a/net/minecraft/server/dedicated/DedicatedServerSettings.java
+++ b/net/minecraft/server/dedicated/DedicatedServerSettings.java
@@ -3,13 +3,20 @@
 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() {