Update BaseArmor.java

This commit is contained in:
Steven Tracey 2020-11-21 00:43:19 -05:00 committed by GitHub
parent 2e12d811e2
commit 274ee0462a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,6 @@ import net.nevets.everythingvanilla.Main;
public class BaseArmor extends ArmorItem { public class BaseArmor extends ArmorItem {
public BaseArmor(ArmorMaterial material, EquipmentSlot slot) { public BaseArmor(ArmorMaterial material, EquipmentSlot slot) {
super(material, slot, new Item.Settings().group(Main.ALL)); super(material, slot, new Item.Settings().group(Main.COMBAT));
} }
} }