mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-05 23:24:44 +02:00
Wrap 1.9 enchant defs in if statements for 1.8 compatibility
This takes care of the NoSuchField errors on initialization of EnchantmentUtils with 1.8 versions of Bukkit.
This commit is contained in:
@ -31,10 +31,14 @@ public class EnchantmentUtils {
|
||||
enchants.put("FLAME", Enchantment.ARROW_FIRE);
|
||||
enchants.put("KNOCKBACK", Enchantment.KNOCKBACK);
|
||||
enchants.put("THORNS", Enchantment.THORNS);
|
||||
if (Enchantment.getByName("MENDING") != null) {
|
||||
enchants.put("MENDING", Enchantment.MENDING);
|
||||
}
|
||||
enchants.put("DEPTH_STRIDER", Enchantment.DEPTH_STRIDER);
|
||||
if (Enchantment.getByName("FROST_WALKER") != null) {
|
||||
enchants.put("FROST_WALKER", Enchantment.FROST_WALKER);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Method to get an {@link Enchantment} using it's Vanilla Minecraft name or Bukkit enum name
|
||||
|
Reference in New Issue
Block a user