diff --git a/README.md b/README.md index 54dff4cf..eafb922d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ### 🔔 What's new in this fork? -- **Support 1.8.9 ~ 1.21.5** +- **Support 1.8.9 ~ 1.21.8** - **Fix Skull display** - **[International Language](https://github.com/Dreeam-qwq/TrMenu/pull/64)** - **Something more...** diff --git a/build.gradle.kts b/build.gradle.kts index 003e55fc..00ffa996 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -62,7 +62,7 @@ subprojects { disableOnSkippedVersion = false } version { - taboolib = "6.2.3-ac49c9a" + taboolib = "6.2.3-6b5f38c" coroutines = null } } diff --git a/gradle.properties b/gradle.properties index b32e549b..47689ac3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ group=me.arasple.mc.trmenu -version=3.7.0 \ No newline at end of file +version=3.7.1 \ No newline at end of file diff --git a/plugin/libs/AzureFlow-1.0.2.4-rc1-build-41212-all.min.jar b/plugin/libs/AzureFlow-1.0.2.4-rc1-build-41212-all.min.jar deleted file mode 100644 index aaf914d5..00000000 Binary files a/plugin/libs/AzureFlow-1.0.2.4-rc1-build-41212-all.min.jar and /dev/null differ diff --git a/plugin/libs/AzureFlow-1.1.0.1-rc1-build-50412-all.min.jar b/plugin/libs/AzureFlow-1.1.0.1-rc1-build-50412-all.min.jar new file mode 100644 index 00000000..b6da2305 Binary files /dev/null and b/plugin/libs/AzureFlow-1.1.0.1-rc1-build-50412-all.min.jar differ diff --git a/plugin/src/main/kotlin/trplugins/menu/module/internal/hook/impl/HookAzureFlow.kt b/plugin/src/main/kotlin/trplugins/menu/module/internal/hook/impl/HookAzureFlow.kt index b6e87f39..b031d7fa 100644 --- a/plugin/src/main/kotlin/trplugins/menu/module/internal/hook/impl/HookAzureFlow.kt +++ b/plugin/src/main/kotlin/trplugins/menu/module/internal/hook/impl/HookAzureFlow.kt @@ -14,7 +14,7 @@ class HookAzureFlow : HookAbstract() { fun getItem(material: String, player: Player): ItemStack { val factory = AzureFlowAPI.getFactory(material) - val stack = factory?.build()?.virtualItemStack(player) ?: empty + val stack = factory?.build()?.itemStack(player) ?: empty return stack } } \ No newline at end of file