Update Enchant Plugins authored by Jules's avatar Jules
......@@ -70,7 +70,7 @@ public class MythicEnchantsSupport implements EnchantPlugin<MythicEnchant> {
Enchant plugins like EcoEnchants do NOT need you to register that `EnchantPlugin` implementation because the lore display is handled using packets which is another possibility.
## If your enchant plugin doesn't use the Bukkit enchant registry
It's a little harder because you need to register a new item stat that will recognize the NBT tags that you use to save the enchant data. Plugins like AdvancedEnchants do save enchants using NBT tags like `ae_enchant:thorns` (and the enchant level is the tag value). It really is recommended to
It's a little harder because you need to register a new item stat that will recognize the NBT tags that you use to save the enchant data. Plugins like AdvancedEnchants do save enchants using NBT tags like `ae_enchant:thorns` (and the enchant level is the tag value). It really is recommended to use the Bukkit registry.
You can check the `ItemStat` implementation for AdvancedEnchants at `net.Indyuce.mmoitems.comp.enchants.advanced_enchants` (check source code).
......
......