use of combatlogx.expansion.compatibility.essentials.listener.ListenerEssentials in project CombatLogX by SirBlobman.
the class EssentialsExpansion method onEnable.
@Override
public void onEnable() {
if (!checkDependency("Essentials", true)) {
ICombatLogX plugin = getPlugin();
ExpansionManager expansionManager = plugin.getExpansionManager();
expansionManager.disableExpansion(this);
return;
}
new ListenerEssentials(this).register();
}
Aggregations