Skip to content

Commit

Permalink
Yet another backwards compatibility fix >_>
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Sep 4, 2014
1 parent 431e149 commit 6ebb746
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/tconstruct/library/tools/ToolMaterial.java
Expand Up @@ -27,6 +27,13 @@ public ToolMaterial(String name, String displayName, int level, int durability,
this.displayName = prefixName();
}

@Deprecated
public ToolMaterial(String name, int level, int durability, int speed, int damage, float handle, int reinforced, float stonebound, String style, String ability)
{
this(name, level, durability, speed, damage, handle, reinforced, stonebound, style);
this.displayName = prefixName();
}

public ToolMaterial(String name, int level, int durability, int speed, int damage, float handle, int reinforced, float stonebound, String style)
{
this.materialName = name;
Expand Down

0 comments on commit 6ebb746

Please sign in to comment.