summaryrefslogtreecommitdiffstats
path: root/src/main/java/org
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org')
-rw-r--r--src/main/java/org/bukkit/potion/PotionType.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/bukkit/potion/PotionType.java b/src/main/java/org/bukkit/potion/PotionType.java
index 95f238a3..60470b88 100644
--- a/src/main/java/org/bukkit/potion/PotionType.java
+++ b/src/main/java/org/bukkit/potion/PotionType.java
@@ -43,7 +43,7 @@ public enum PotionType {
public boolean isInstant() {
return effect != null && effect.isInstant();
}
-
+
/**
* Checks if the potion type has an upgraded state.
* This refers to whether or not the potion type can be Tier 2,
@@ -64,13 +64,13 @@ public enum PotionType {
public boolean isExtendable() {
return extendable;
}
-
+
/**
* @deprecated Non-functional
*/
@Deprecated
public int getDamageValue() {
- return 0;
+ return this.ordinal();
}
public int getMaxLevel() {