From d19bb5b8c5a47a395e11d2456ec86c9ffee88964 Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 2 May 2016 18:24:07 +1000 Subject: SPIGOT-2229: Make PotionType.getDamageValue() attempt sane return. --- src/main/java/org/bukkit/potion/PotionType.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/org') 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() { -- cgit v1.2.3