Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
api(nms): NMSItemStackWrapper に instance のコンストラクタを追加 #62
Browse files Browse the repository at this point in the history
  • Loading branch information
sya-ri committed Apr 6, 2021
1 parent 2a4ee07 commit 6f36efc
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import org.bukkit.inventory.ItemStack

/**
* `net.minecraft.server.%s.ItemStack` を扱う。
* @param itemStack インスタンスを生成する元のアイテム
* @param instance NMS の ItemStack のインスタンス
* @since 1.8.0
*/
class NMSItemStackWrapper(val itemStack: ItemStack) : NMSWrapper() {
class NMSItemStackWrapper(override val instance: Any) : NMSWrapper() {
companion object : NMSWrapper.Companion {
/**
* クラス。
Expand All @@ -16,7 +16,12 @@ class NMSItemStackWrapper(val itemStack: ItemStack) : NMSWrapper() {
override val clazz = getNMSClass("net.minecraft.server.%s.ItemStack")
}

override val instance: Any = CraftItemStackWrapper.clazz.getDeclaredMethod("asNMSCopy", ItemStack::class.java).invoke(null, itemStack)
/**
* Bukkit の ItemStack から NMS の ItemStack を操作する。
* @param itemStack Bukkit の ItemStack
* @since 1.8.0
*/
constructor(itemStack: ItemStack) : this(CraftItemStackWrapper.clazz.getDeclaredMethod("asNMSCopy", ItemStack::class.java).invoke(null, itemStack))

/**
* [org.bukkit.inventory.ItemStack] から [NBTTagCompoundWrapper] のインスタンスを取得する。
Expand Down

0 comments on commit 6f36efc

Please sign in to comment.