Commits

Thinkofname authored efd0c517237 Merge
Merge pull request #2 in SPIGOT/bukkit from ~DMCK2B/bukkit:feature/implementDepthStrider to master

* commit '07351b62c810c306e076d49ddf0a5b74c57e9351': Implement the Depth Strider enchantment in the API
No tags

src/main/java/org/bukkit/enchantments/Enchantment.java

Modified
43 43 /**
44 44 * Increases the speed at which a player may mine underwater
45 45 */
46 46 public static final Enchantment WATER_WORKER = new EnchantmentWrapper(6);
47 47
48 48 /**
49 49 * Damages the attacker
50 50 */
51 51 public static final Enchantment THORNS = new EnchantmentWrapper(7);
52 52
53 + /**
54 + * Increases walking speed while in water
55 + */
56 + public static final Enchantment DEPTH_STRIDER = new EnchantmentWrapper(8);
57 +
53 58 /**
54 59 * Increases damage against all targets
55 60 */
56 61 public static final Enchantment DAMAGE_ALL = new EnchantmentWrapper(16);
57 62
58 63 /**
59 64 * Increases damage against undead targets
60 65 */
61 66 public static final Enchantment DAMAGE_UNDEAD = new EnchantmentWrapper(17);
62 67

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut