From ff8b48587f96cf74311ca2d817fa3ac4529d6e62 Mon Sep 17 00:00:00 2001 From: Penal Buffalo Date: Fri, 24 May 2024 09:41:28 -0500 Subject: [PATCH] LevelledMobs 4.0 Support Updated the API to 4.0 --- eco-core/core-plugin/build.gradle.kts | 2 +- .../integrations/levelledmobs/IntegrationLevelledMobs.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eco-core/core-plugin/build.gradle.kts b/eco-core/core-plugin/build.gradle.kts index ae85f58..def93f3 100644 --- a/eco-core/core-plugin/build.gradle.kts +++ b/eco-core/core-plugin/build.gradle.kts @@ -3,7 +3,7 @@ version = rootProject.version dependencies { compileOnly("io.papermc.paper:paper-api:1.20.2-R0.1-SNAPSHOT") - compileOnly("com.github.lokka30:LevelledMobs:3.1.4") + compileOnly("io.github.arcaneplugins:levelledmobs-plugin:4.0.2") compileOnly("LibsDisguises:LibsDisguises:10.0.38") implementation("com.willfp:ModelEngineBridge:1.0.0") } diff --git a/eco-core/core-plugin/src/main/kotlin/com/willfp/ecomobs/integrations/levelledmobs/IntegrationLevelledMobs.kt b/eco-core/core-plugin/src/main/kotlin/com/willfp/ecomobs/integrations/levelledmobs/IntegrationLevelledMobs.kt index 4214ace..4b7a583 100644 --- a/eco-core/core-plugin/src/main/kotlin/com/willfp/ecomobs/integrations/levelledmobs/IntegrationLevelledMobs.kt +++ b/eco-core/core-plugin/src/main/kotlin/com/willfp/ecomobs/integrations/levelledmobs/IntegrationLevelledMobs.kt @@ -3,7 +3,7 @@ package com.willfp.ecomobs.integrations.levelledmobs import com.willfp.eco.core.integrations.Integration import com.willfp.ecomobs.integrations.MobIntegration import com.willfp.ecomobs.mob.impl.ecoMob -import me.lokka30.levelledmobs.events.MobPreLevelEvent +import io.github.arcaneplugins.levelledmobs.events.MobPreLevelEvent import org.bukkit.entity.Mob import org.bukkit.event.EventHandler import org.bukkit.event.Listener