better messages

This commit is contained in:
Telesphoreo 2022-02-24 00:24:27 -06:00
parent e326477a5a
commit c74b0466b9
1 changed files with 2 additions and 2 deletions

View File

@ -69,14 +69,14 @@ public class Config extends YamlConfiguration
{
// If it doesn't contain the key, we set the key based off what was found inside the plugin jar
externalYamlConfig.set(string, internalYamlConfig.get(string));
PlexLog.log("Setting key: " + string + " to the default value(s) since it does not exist!");
PlexLog.log("Setting key: " + string + " in " + this.name + " to the default value(s) since it does not exist!");
added = true;
}
}
if (added)
{
externalYamlConfig.save(file);
PlexLog.log("Saving new configuration file...");
PlexLog.log("Saving new file...");
}
super.load(file);
}