io.pixeloutlaw.minecraft.spigot.plumbing.v119R1.MessageBroadcaster.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plumbing-1_19_R1 Show documentation
Show all versions of plumbing-1_19_R1 Show documentation
NMS and OBC Adapters for v1_19_R1 for MythicDrops
package io.pixeloutlaw.minecraft.spigot.plumbing.v119R1
import io.pixeloutlaw.minecraft.spigot.plumbing.api.AbstractMessageBroadcaster
import net.minecraft.nbt.NBTTagCompound
import org.bukkit.craftbukkit.v1_19_R1.inventory.CraftItemStack
import org.bukkit.inventory.ItemStack
public object MessageBroadcaster : AbstractMessageBroadcaster() {
override fun convertItemStackToJson(itemStack: ItemStack): String {
val nbtTagCompound = NBTTagCompound()
val nmsItemStack = CraftItemStack.asNMSCopy(itemStack)
return nmsItemStack.b(nbtTagCompound).p("tag").toString()
}
}