Implemented Enchantment.conflictsWith(). Addresses BUKKIT-1159

By: Celtic Minstrel <celtic.minstrel.ca@some.place>
This commit is contained in:
CraftBukkit/Spigot 2012-03-12 15:32:46 -04:00
parent 70900406c9
commit 67f275fc78

View File

@ -116,4 +116,16 @@ public class CraftEnchantment extends Enchantment {
return null;
}
@Override
public boolean conflictsWith(Enchantment other) {
if (other instanceof EnchantmentWrapper) {
other = ((EnchantmentWrapper) other).getEnchantment();
}
if (!(other instanceof CraftEnchantment)) {
return false;
}
CraftEnchantment ench = (CraftEnchantment) other;
return !target.a(ench.target);
}
}