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

This commit is contained in:
bm01 2013-02-12 19:13:15 +01:00
parent 6f1ddee0ac
commit f486492c37
2 changed files with 3 additions and 3 deletions

View File

@ -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)) {

View File

@ -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);
}
/**