Added Backward Compatible Constructor

This commit is contained in:
Frank 2022-11-15 20:41:49 +01:00
parent 09f2a9148c
commit 1f91c0edda

View file

@ -171,6 +171,16 @@ public abstract class EquipmentSet {
private final Map<String, EquipmentDescription<?>> descriptions = new HashMap<>();
@Deprecated(forRemoval = true)
public EquipmentSet(
Tier material,
String modID,
String baseName,
ItemLike stick
) {
this(material, modID, baseName, stick, AttackDamage.IRON_LEVEL, AttackSpeed.IRON_LEVEL);
}
public EquipmentSet(
Tier material,
String modID,