I was working on my project and accidently find out the bug, I enchanted my fishing rod with a book which have sharpness 5, fire aspect 2, luck of the sea 3 and they all appeared on the fishing rod. I tested it and it worked, things get set on fire, they take more damage than usual by the damage indicator. This is a serious bad bug, but sometime quite funny(Imagine a hoe with all enchantment 🙂). But please fix this bug as fast as you can it is not good.
Comments 4
No I used an anvil to enchant it but I use my iPas to report this so it is not available for me to sent some screenshots
Creative mode intentionally skips the check for whether or not the enchantment applies to the item:
ContainerRepair.updateRepairOutput (MCP)
boolean flag1 = enchantment1.canApply(itemstack);
if (this.player.capabilities.isCreativeMode || itemstack.getItem() == Items.ENCHANTED_BOOK)
{
flag1 = true;
}
This doesn't happen in survival mode.
You can add some screenshots. If you enchant the rod in creative It is normal.