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