mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
Don't fail to load when moving components file
This commit is contained in:
parent
fee1ffa2e9
commit
46fbc05040
@ -89,7 +89,7 @@ public class ComponentPresetManager {
|
||||
Path oldLoc = Paths.get(PlotSquared.platform().getDirectory() + "/components.yml");
|
||||
Path newLoc = Paths.get(PlotSquared.platform().getDirectory() + "/config" + "/components.yml");
|
||||
Files.move(oldLoc, newLoc);
|
||||
} else {
|
||||
}
|
||||
try {
|
||||
this.componentsFile = new File(folder, "components.yml");
|
||||
if (!this.componentsFile.exists() && !this.componentsFile.createNewFile()) {
|
||||
@ -98,7 +98,6 @@ public class ComponentPresetManager {
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
ConfigurationSerialization.registerClass(ComponentPreset.class, "ComponentPreset");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user