mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-03 01:00:18 +01:00
#667 /authme switchantibot throws NullPointerException
- Antibot was not provided to CommandService (from where it's retrieved in the SwitchAntiBot command) because it was initialized afterwards
This commit is contained in:
parent
37fb29f8b9
commit
e818395575
@ -258,17 +258,13 @@ public class AuthMe extends JavaPlugin {
|
|||||||
// Initialize spawn loader
|
// Initialize spawn loader
|
||||||
spawnLoader = new SpawnLoader(getDataFolder(), newSettings, pluginHooks);
|
spawnLoader = new SpawnLoader(getDataFolder(), newSettings, pluginHooks);
|
||||||
|
|
||||||
|
|
||||||
// Set up the permissions manager and command handler
|
|
||||||
bukkitService = new BukkitService(this);
|
bukkitService = new BukkitService(this);
|
||||||
permsMan = initializePermissionsManager();
|
permsMan = initializePermissionsManager();
|
||||||
|
antiBot = new AntiBot(newSettings, messages, permsMan, bukkitService);
|
||||||
ValidationService validationService = new ValidationService(newSettings, database, permsMan);
|
ValidationService validationService = new ValidationService(newSettings, database, permsMan);
|
||||||
commandHandler = initializeCommandHandler(permsMan, messages, passwordSecurity, newSettings,
|
commandHandler = initializeCommandHandler(permsMan, messages, passwordSecurity, newSettings,
|
||||||
pluginHooks, spawnLoader, antiBot, validationService, bukkitService);
|
pluginHooks, spawnLoader, antiBot, validationService, bukkitService);
|
||||||
|
|
||||||
// AntiBot delay
|
|
||||||
antiBot = new AntiBot(newSettings, messages, permsMan, bukkitService);
|
|
||||||
|
|
||||||
// Set up Metrics
|
// Set up Metrics
|
||||||
MetricsStarter.setupMetrics(plugin, newSettings);
|
MetricsStarter.setupMetrics(plugin, newSettings);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user