Skip to content

Commit 9b5860c

Browse files
authored
Merge pull request #197 from YsGqHY/stable/v3
build(plugin): 修复 AzureFlow 钩挂问题
2 parents 0f3188b + 17e85f4 commit 9b5860c

6 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### 🔔 What's new in this fork?
88

9-
- **Support 1.8.9 ~ 1.21.5**
9+
- **Support 1.8.9 ~ 1.21.8**
1010
- **Fix Skull display**
1111
- **[International Language](https://github.com/Dreeam-qwq/TrMenu/pull/64)**
1212
- **Something more...**

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ subprojects {
6262
disableOnSkippedVersion = false
6363
}
6464
version {
65-
taboolib = "6.2.3-ac49c9a"
65+
taboolib = "6.2.3-6b5f38c"
6666
coroutines = null
6767
}
6868
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=me.arasple.mc.trmenu
2-
version=3.7.0
2+
version=3.7.1
-1.26 MB
Binary file not shown.
388 KB
Binary file not shown.

plugin/src/main/kotlin/trplugins/menu/module/internal/hook/impl/HookAzureFlow.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class HookAzureFlow : HookAbstract() {
1414
fun getItem(material: String, player: Player): ItemStack {
1515

1616
val factory = AzureFlowAPI.getFactory(material)
17-
val stack = factory?.build()?.virtualItemStack(player) ?: empty
17+
val stack = factory?.build()?.itemStack(player) ?: empty
1818
return stack
1919
}
2020
}

0 commit comments

Comments
 (0)