Fixed typo in PotionType.

This commit is contained in:
EvilSeph 2012-10-31 11:40:11 -04:00
parent 4f7ded55db
commit 772d6ca804

View File

@ -12,7 +12,7 @@ public enum PotionType {
STRENGTH(9, PotionEffectType.INCREASE_DAMAGE, 2), STRENGTH(9, PotionEffectType.INCREASE_DAMAGE, 2),
SLOWNESS(10, PotionEffectType.SLOW, 1), SLOWNESS(10, PotionEffectType.SLOW, 1),
INSTANT_DAMAGE(12, PotionEffectType.HARM, 2), INSTANT_DAMAGE(12, PotionEffectType.HARM, 2),
INVISIBILTY(14, PotionEffectType.INVISIBILITY, 1), INVISIBILITY(14, PotionEffectType.INVISIBILITY, 1),
; ;
private final int damageValue, maxLevel; private final int damageValue, maxLevel;