blob: 81979f63f303d89679113a758bbc404b089ec3f0 (
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
27
28
29
30
31
32
33
34
35
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;
}
}
|