Compare commits

...

2 Commits

Author SHA1 Message Date
xelara 321eca90c4 Patched config generation 2026-06-23 18:48:03 -04:00
xelara 20e234d07f Patched config generation 2026-06-23 18:47:41 -04:00
6 changed files with 2 additions and 3 deletions
Binary file not shown.
@@ -13,7 +13,6 @@ import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
@@ -249,7 +248,7 @@ public final class PluginRuntime {
if (input == null) {
throw new IOException("Missing bundled config resource: " + resourceName);
}
Files.copy(input, configPath, StandardCopyOption.COPY_ATTRIBUTES);
Files.copy(input, configPath);
}
logger.warning("Created default DirtSimpleP2P config at " + configPath
Binary file not shown.