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