mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 14:46:46 +01: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:
parent
eb3f7568f2
commit
728e89257c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user