
Potential issues with canApplyAtEnchantingTable check
KreloX opened this issue ยท 1 comments
This check should not pass when any of the traits mark the enchantment as incompatible, because incompatibility should probably take priority.
Currently the priority goes to the first iterated over trait with changes to enchantment compatibility.
It should pass if: none specify incompatible && (at least one specifies compatible || isnt sweeping edge && super call)
public boolean canApplyAtEnchantingTable(ItemStack stack, Enchantment enchantment)
{
boolean isCompatible = false;
for(WeaponTrait trait : traits)
{
if(trait.isEnchantmentIncompatible(enchantment))
return false;
else if(trait.isEnchantmentCompatible(enchantment))
isCompatible = true;
}
// Sweeping Edge is incompatible with most weapons unless they have the Sweep I trait
return isCompatible || enchantment != Enchantments.SWEEPING_EDGE && super.canApplyAtEnchantingTable(stack, enchantment);
}