mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-12-18 22:57:47 +01:00
Fix #632
- Fix permissions manager is not initialized when constructing antibot instance.
This commit is contained in:
parent
b43e706572
commit
8819f26c29
@ -256,15 +256,16 @@ public class AuthMe extends JavaPlugin {
|
|||||||
// Initialize spawn loader
|
// Initialize spawn loader
|
||||||
spawnLoader = new SpawnLoader(getDataFolder(), newSettings, pluginHooks);
|
spawnLoader = new SpawnLoader(getDataFolder(), newSettings, pluginHooks);
|
||||||
|
|
||||||
// AntiBot delay
|
|
||||||
BukkitService bukkitService = new BukkitService(this);
|
|
||||||
antiBot = new AntiBot(newSettings, messages, permsMan, bukkitService);
|
|
||||||
|
|
||||||
// Set up the permissions manager and command handler
|
// Set up the permissions manager and command handler
|
||||||
permsMan = initializePermissionsManager();
|
permsMan = initializePermissionsManager();
|
||||||
commandHandler = initializeCommandHandler(permsMan, messages, passwordSecurity, newSettings, ipAddressManager,
|
commandHandler = initializeCommandHandler(permsMan, messages, passwordSecurity, newSettings, ipAddressManager,
|
||||||
pluginHooks, spawnLoader, antiBot);
|
pluginHooks, spawnLoader, antiBot);
|
||||||
|
|
||||||
|
// AntiBot delay
|
||||||
|
BukkitService bukkitService = new BukkitService(this);
|
||||||
|
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