Skip to main content

EnchantLimits API

Quick Reference

EnchantLimits plugin = (EnchantLimits) Bukkit.getPluginManager().getPlugin("EnchantLimits");

// Get limit
int limit = plugin.getLimit(Enchantment.SHARPNESS);

// Set limit
plugin.setLimit(Enchantment.PROTECTION, 4);

// Check bypass
boolean canBypass = player.hasPermission("enchantlimit.bypass.*");

See API Overview for integration details.