浏览代码

For consistency with Bukkit, ItemChecks.isPants -> ItemChecks.isLeggings

bm01 12 年之前
父节点
当前提交
f486492c37

+ 1 - 1
src/main/java/com/gmail/nossr50/skills/repair/Salvage.java

@@ -124,7 +124,7 @@ public class Salvage {
         else if (ItemChecks.isChestplate(inHand)) {
             return 8;
         }
-        else if (ItemChecks.isPants(inHand)) {
+        else if (ItemChecks.isLeggings(inHand)) {
             return 7;
         }
         else if (ItemChecks.isBoots(inHand)) {

+ 2 - 2
src/main/java/com/gmail/nossr50/util/ItemChecks.java

@@ -207,7 +207,7 @@ public class ItemChecks {
      * @param is Item to check
      * @return true if the item is a pair of pants, false otherwise
      */
-    public static boolean isPants(ItemStack is) {
+    public static boolean isLeggings(ItemStack is) {
         switch (is.getType()) {
         case DIAMOND_LEGGINGS:
         case GOLD_LEGGINGS:
@@ -254,7 +254,7 @@ public class ItemChecks {
      * @return true if the item is armor, false otherwise
      */
     public static boolean isArmor(ItemStack is) {
-        return isHelmet(is) || isChestplate(is) || isPants(is) || isBoots(is);
+        return isHelmet(is) || isChestplate(is) || isLeggings(is) || isBoots(is);
     }
 
     /**