diff --git a/README.md b/README.md index 6d5c9aa..5fbc469 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Here is a list of supported anvil mechanic plugins with support status: Officially supported by Custom Anvil but still experimental. Mostly use Custom Anvil basic XP settings. (version >= 6.1.0) - [HavenBags](https://www.spigotmc.org/resources/havenbags-shulker-like-player-bound-bags-1-17-1-21-4.110420/) -Officially supported by Custom Anvil. Not really enchantment related but CustomAnvil should not impact bag upgrade and skin via anvil. +Officially supported by Custom Anvil. Not really enchantment related but CustomAnvil should not impact bag upgrade and skin via anvil. (version >= 1.31.0) If you like Custom Anvil to support a specific plugin (custom enchant or anvil mechanic). You can ask, but please note implementing compatibility will be considered diff --git a/build.gradle.kts b/build.gradle.kts index 987ef6b..b8f2be0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,7 +16,7 @@ plugins { } group = "xyz.alexcrea" -version = "1.8.1" +version = "1.8.2" repositories { // EcoEnchants @@ -50,7 +50,7 @@ dependencies { compileOnly(files("libs/Disenchantment-6.1.0.jar")) // HavenBags - compileOnly(files("libs/HavenBags-1.30.1.1729.jar")) + compileOnly(files("libs/HavenBags-1.31.0.1760.jar")) // Include nms implementation(project(":nms:nms-common")) diff --git a/libs/HavenBags-1.30.1.1729.jar b/libs/HavenBags-1.30.1.1729.jar deleted file mode 100644 index e5d58e5..0000000 Binary files a/libs/HavenBags-1.30.1.1729.jar and /dev/null differ diff --git a/libs/HavenBags-1.31.0.1760.jar b/libs/HavenBags-1.31.0.1760.jar new file mode 100644 index 0000000..aed122d Binary files /dev/null and b/libs/HavenBags-1.31.0.1760.jar differ diff --git a/src/main/kotlin/xyz/alexcrea/cuanvil/dependency/HavenBagsDependency.kt b/src/main/kotlin/xyz/alexcrea/cuanvil/dependency/HavenBagsDependency.kt index ef2e680..e0fd3f9 100644 --- a/src/main/kotlin/xyz/alexcrea/cuanvil/dependency/HavenBagsDependency.kt +++ b/src/main/kotlin/xyz/alexcrea/cuanvil/dependency/HavenBagsDependency.kt @@ -6,9 +6,9 @@ import org.bukkit.event.inventory.InventoryClickEvent import org.bukkit.event.inventory.PrepareAnvilEvent import org.bukkit.inventory.AnvilInventory import org.bukkit.plugin.RegisteredListener -import valorless.havenbags.BagSkin -import valorless.havenbags.BagUpgrade import valorless.havenbags.HavenBags +import valorless.havenbags.features.BagSkin +import valorless.havenbags.features.BagUpgrade import xyz.alexcrea.cuanvil.listener.PrepareAnvilListener import xyz.alexcrea.cuanvil.util.AnvilXpUtil