moved settings constructor call

This commit is contained in:
Bryson Steck 2021-09-13 15:50:14 -06:00
parent 9e1a8fc7e9
commit 19bdabea9e
2 changed files with 3 additions and 4 deletions

View file

@ -66,8 +66,6 @@ public class Resurrection extends JavaPlugin implements Listener {
System.out.println("[Resurrection] ---------------------------------------------------------");
ParseSettings parseSettings = null;
System.out.println("[Resurrection] Locating player data and settings files...");
// check if playerData.resurrection exists
File playerFile = new File("plugins/playerData.resurrection");
@ -91,13 +89,14 @@ public class Resurrection extends JavaPlugin implements Listener {
}
if (!settingsFile.exists()) {
System.out.println("[Resurrection] Settings file does not exist. Creating now in the \"plugins\" directory...");
parseSettings = new ParseSettings();
new ParseSettings();
System.out.println("[Resurrection] Settings file created successfully.");
} else {
System.out.println("[Resurrection] The settings file has also been found!");
parseSettings = new ParseSettings();
}
ParseSettings parseSettings = new ParseSettings();
System.out.println("[Resurrection] ---------------------------------------------------------");
if (parseSettings.isSettingsComplete() && !fileFail) {