mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2025-01-27 02:31:55 +01:00
Run the permissible monitoring injector twice
This commit is contained in:
parent
d0143f9e54
commit
4f4a387f04
@ -253,7 +253,8 @@ public class LPBukkitPlugin extends JavaPlugin implements LuckPermsPlugin {
|
||||
Runnable[] injectors = new Runnable[]{
|
||||
new InjectorSubscriptionMap(this),
|
||||
new InjectorPermissionMap(this),
|
||||
new InjectorDefaultsMap(this)
|
||||
new InjectorDefaultsMap(this),
|
||||
new PermissibleMonitoringInjector(this)
|
||||
};
|
||||
|
||||
for (Runnable injector : injectors) {
|
||||
@ -264,9 +265,6 @@ public class LPBukkitPlugin extends JavaPlugin implements LuckPermsPlugin {
|
||||
this.scheduler.asyncLater(injector, 1L);
|
||||
}
|
||||
|
||||
// inject verbose handlers into internal bukkit objects
|
||||
new PermissibleMonitoringInjector(this).run();
|
||||
|
||||
// Provide vault support
|
||||
tryVaultHook(false);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user