diff options
author | DoctorDark <doctordark11@gmail.com> | 2015-01-10 21:23:04 +0000 |
---|---|---|
committer | md_5 <git@md-5.net> | 2015-01-12 12:45:33 +1100 |
commit | e8b6cdfa8a051e28a90e1698c937f4a6c8a8f348 (patch) | |
tree | 6c0e251e3ca3e2e6297d01fd40894d3da987c3a3 | |
parent | d3d800aee315670609d21142475b6df0091b44a7 (diff) | |
download | bukkit-e8b6cdfa8a051e28a90e1698c937f4a6c8a8f348.tar bukkit-e8b6cdfa8a051e28a90e1698c937f4a6c8a8f348.tar.gz bukkit-e8b6cdfa8a051e28a90e1698c937f4a6c8a8f348.tar.lz bukkit-e8b6cdfa8a051e28a90e1698c937f4a6c8a8f348.tar.xz bukkit-e8b6cdfa8a051e28a90e1698c937f4a6c8a8f348.zip |
SPIGOT-371: Fix incorrect data bit for leap potion effect
-rw-r--r-- | src/main/java/org/bukkit/potion/PotionType.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/bukkit/potion/PotionType.java b/src/main/java/org/bukkit/potion/PotionType.java index 568356e3..6ad9a91a 100644 --- a/src/main/java/org/bukkit/potion/PotionType.java +++ b/src/main/java/org/bukkit/potion/PotionType.java @@ -11,10 +11,10 @@ public enum PotionType { WEAKNESS(8, PotionEffectType.WEAKNESS, 1), STRENGTH(9, PotionEffectType.INCREASE_DAMAGE, 2), SLOWNESS(10, PotionEffectType.SLOW, 1), + JUMP(11, PotionEffectType.JUMP, 2), INSTANT_DAMAGE(12, PotionEffectType.HARM, 2), WATER_BREATHING(13, PotionEffectType.WATER_BREATHING, 1), INVISIBILITY(14, PotionEffectType.INVISIBILITY, 1), - JUMP(15, PotionEffectType.JUMP, 2) ; private final int damageValue, maxLevel; |