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