Skip to content

Commit 0989c22

Browse files
committed
[6.0.10][publish] update toast & remove "item" action
1 parent 39a9d4a commit 0989c22

File tree

3 files changed

+4
-3
lines changed
  • module

3 files changed

+4
-3
lines changed

module/module-kether/src/main/kotlin/taboolib/module/kether/action/game/bukkit/ActionItemStack.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import taboolib.module.kether.*
1515
@PlatformSide([Platform.BUKKIT])
1616
object ActionItemStack {
1717

18-
@KetherParser(["item", "itemstack"])
18+
@KetherParser(["itemstack"])
1919
fun actionItemStack() = scriptParser {
2020
val str = it.nextParsedAction()
2121
actionTake { run(str).str { s -> ItemStack(Material.getMaterial(s.uppercase()) ?: error("Unknown material: $s")) } }

module/module-nms-util/src/main/kotlin/taboolib/module/nms/NMSToast.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,12 @@ private fun eject(key: NamespacedKey): NamespacedKey {
113113
return key
114114
}
115115

116-
private fun toJsonToast(icon: String, title: String, frame: ToastFrame, background: ToastBackground): JsonObject {
116+
private fun toJsonToast(icon: String, title: String, frame: ToastFrame, background: ToastBackground, customModelData: Int = 0): JsonObject {
117117
val json = JsonObject()
118118
json.add("display", JsonObject().run {
119119
this.add("icon", JsonObject().run {
120120
this.addProperty("item", icon)
121+
this.addProperty("nbt", "{CustomModelData:$customModelData}")
121122
this
122123
})
123124
this.addProperty("title", title)

module/module-ui/src/main/kotlin/taboolib/module/ui/MenuBuilder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fun InventoryClickEvent.getAffectItems(): List<ItemStack> {
3939
if (click == ClickType.NUMBER_KEY) {
4040
val hotbarButton = whoClicked.inventory.getItem(hotbarButton)
4141
if (hotbarButton.isNotAir()) {
42-
items += hotbarButton!!
42+
items += hotbarButton
4343
}
4444
}
4545
if (currentItem.isNotAir()) {

0 commit comments

Comments
 (0)