mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-24 11:15:19 +01:00
Added getter for newSettings field.
This commit is contained in:
parent
10fedfb66d
commit
c3e3bdf3a4
@ -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. "
|
||||
|
Loading…
Reference in New Issue
Block a user