mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
SPIGOT-371: Fix incorrect data bit for leap potion effect
This commit is contained in:
parent
d3d800aee3
commit
e8b6cdfa8a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue