Added Backward Compatible Constructor
This commit is contained in:
parent
09f2a9148c
commit
1f91c0edda
1 changed files with 10 additions and 0 deletions
|
@ -171,6 +171,16 @@ public abstract class EquipmentSet {
|
||||||
|
|
||||||
private final Map<String, EquipmentDescription<?>> descriptions = new HashMap<>();
|
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(
|
public EquipmentSet(
|
||||||
Tier material,
|
Tier material,
|
||||||
String modID,
|
String modID,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue