Added getter for newSettings field.

This commit is contained in:
DNx5 2016-02-18 11:25:31 +07:00
parent 10fedfb66d
commit c3e3bdf3a4

View File

@ -109,7 +109,6 @@ public class AuthMe extends JavaPlugin {
private Management management;
private CommandHandler commandHandler = null;
private PermissionsManager permsMan = null;
private Settings settings;
private NewSetting newSettings;
private Messages messages;
private JsonCache playerBackup;
@ -192,6 +191,15 @@ public class AuthMe extends JavaPlugin {
return messages;
}
/**
* Get the plugin's NewSetting instance.
*
* @return NewSetting.
*/
public NewSetting getSettings() {
return newSettings;
}
// Get version and build number of the plugin
private void setPluginInfos() {
String versionRaw = this.getDescription().getVersion();
@ -440,7 +448,7 @@ public class AuthMe extends JavaPlugin {
*/
private boolean loadSettings() {
try {
settings = new Settings(this);
new Settings(this);
return true;
} catch (Exception e) {
ConsoleLogger.logException("Can't load the configuration file... Something went wrong. "