Compare commits

..

No commits in common. "main" and "Alpha-1.0-RC02" have entirely different histories.

2 changed files with 34 additions and 4 deletions

View File

@ -6,9 +6,11 @@ import org.bukkit.configuration.ConfigurationSection;
import org.bukkit.configuration.InvalidConfigurationException;
import org.bukkit.configuration.file.YamlConfiguration;
import java.io.File;
import java.io.IOException;
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;
@ -20,17 +22,45 @@ public class Config extends YamlConfiguration {
public Config(ToolAssist plugin) {
this.settings = new Settings(this);
String fileName = "config.yml";
File dataFolder = plugin.getDataFolder();
if (!dataFolder.exists()) dataFolder.mkdirs();
cf = new File(dataFolder, fileName);
try {
if (cf.createNewFile()) {
InputStream stream = plugin.getResource(fileName);
assert stream != null;
try (BufferedReader reader = new BufferedReader(new InputStreamReader(stream, StandardCharsets.UTF_8))) {
if (!cf.exists()) {
cf.createNewFile();
plugin.saveResource(fileName, true);
}
oload();
reader.lines().filter(s -> s.contains(":"))
.map(s -> s.split(":")[0])
.filter(s -> !super.getValues(true).containsKey(s))
.forEach(s -> {
plugin.getLogger().severe("Configuration is missing an entry, attempting to replace...");
Optional<String> stringStream = reader.lines().filter(c -> c.contains(s)).findFirst();
if (stringStream.isEmpty())
throw new RuntimeException("Unable to fix your configuration file. Please delete the config.yml in the data folder and restart your server.");
String key = stringStream.get().split(":")[0].trim();
String value = stringStream.get().split(":")[1].trim();
super.addDefault(key, value);
osave();
});
} catch (IOException ex) {
plugin.getLogger().severe(ex.getMessage());
}
oload();
}