IsArmor junk removal

This commit is contained in:
2024-03-10 07:21:34 -04:00
parent 76d723669a
commit f349e0dda8
2 changed files with 1 additions and 15 deletions
-14
View File
@@ -525,18 +525,4 @@ public class ItemBase {
this.offHandAnimations = offHandAnimations;
}
public boolean isArmor() {
if (this.isHeavyArmor())
return true;
if (this.isMediumArmor())
return true;
if (this.isLightArmor())
return true;
return this.isClothArmor();
}
}