Add Enchantment#isTreasure()Z

Determines if the enchantment is a treasure enchantment - only available via means other than the enchantment table.

By: Senmori <thesenmori@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2016-10-25 11:16:50 -04:00
parent 714d2583c4
commit 259427c8af

View file

@ -54,6 +54,11 @@ public class CraftEnchantment extends Enchantment {
}
}
@Override
public boolean isTreasure() {
return target.e(); // PAIL: isTreasure
}
@Override
public boolean canEnchantItem(ItemStack item) {
return target.canEnchant(CraftItemStack.asNMSCopy(item));