summaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
authorEvilSeph <evilseph@gmail.com>2012-10-31 11:40:11 -0400
committerEvilSeph <evilseph@gmail.com>2012-10-31 11:40:11 -0400
commit772d6ca8042ac14555e3e3869cc7cba379adeab0 (patch)
treeb8877dfaf81f61292833939da4f11f621821d9ee /src/main
parent4f7ded55db2a92fa1c7a8ea4d45d2a8332a4e749 (diff)
downloadbukkit-772d6ca8042ac14555e3e3869cc7cba379adeab0.tar
bukkit-772d6ca8042ac14555e3e3869cc7cba379adeab0.tar.gz
bukkit-772d6ca8042ac14555e3e3869cc7cba379adeab0.tar.lz
bukkit-772d6ca8042ac14555e3e3869cc7cba379adeab0.tar.xz
bukkit-772d6ca8042ac14555e3e3869cc7cba379adeab0.zip
Fixed typo in PotionType.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/org/bukkit/potion/PotionType.java2
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 f9a19cf8..46921c23 100644
--- a/src/main/java/org/bukkit/potion/PotionType.java
+++ b/src/main/java/org/bukkit/potion/PotionType.java
@@ -12,7 +12,7 @@ public enum PotionType {
STRENGTH(9, PotionEffectType.INCREASE_DAMAGE, 2),
SLOWNESS(10, PotionEffectType.SLOW, 1),
INSTANT_DAMAGE(12, PotionEffectType.HARM, 2),
- INVISIBILTY(14, PotionEffectType.INVISIBILITY, 1),
+ INVISIBILITY(14, PotionEffectType.INVISIBILITY, 1),
;
private final int damageValue, maxLevel;