mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 18:50:51 +01:00
30e4583dbe
By: Initial Source <noreply+automated@papermc.io>
27 lines
927 B
Diff
27 lines
927 B
Diff
--- 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(this.source, optionset);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
public DedicatedServerProperties getProperties() {
|