Skip to content

Commit

Permalink
AureliumSkills integration will no longer load if EcoSkills is presen…
Browse files Browse the repository at this point in the history
…t on the server
  • Loading branch information
WillFP committed Oct 16, 2023
1 parent 8b27ef6 commit 68095c2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ import com.willfp.libreforge.integrations.aureliumskills.impl.EffectSkillXpMulti

object AureliumSkillsIntegration : LoadableIntegration {
override fun load(plugin: EcoPlugin) {
if (plugin.server.pluginManager.getPlugin("EcoSkills") != null) {
return
}

Effects.register(EffectAddStat)
Conditions.register(ConditionHasMana)
Effects.register(EffectSkillXpMultiplier)
Expand Down

0 comments on commit 68095c2

Please sign in to comment.