Update enchantment handling to 1.4.6. Fixes BUKKIT-3256

By: feildmaster <admin@feildmaster.com>
This commit is contained in:
CraftBukkit/Spigot
2012-12-21 18:52:39 -06:00
parent a04364f6a7
commit f23414917d

View File

@@ -1,6 +1,6 @@
package org.bukkit.craftbukkit.enchantments;
import net.minecraft.server.Item;
import org.bukkit.craftbukkit.inventory.CraftItemStack;
import org.bukkit.enchantments.Enchantment;
import org.bukkit.enchantments.EnchantmentTarget;
import org.bukkit.enchantments.EnchantmentWrapper;
@@ -52,7 +52,7 @@ public class CraftEnchantment extends Enchantment {
@Override
public boolean canEnchantItem(ItemStack item) {
return target.slot.canEnchant(Item.byId[item.getTypeId()]);
return target.canEnchant(CraftItemStack.asNMSCopy(item));
}
@Override