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