Changed tool field names to match armor field names

This commit is contained in:
Emmanuel BENOîT 2016-07-22 11:06:47 +02:00
parent be2ef933ed
commit 6b84b38eaa

View file

@ -7,18 +7,18 @@ import mmm.MmmMaterials;
public class TTTools public class TTTools
{ {
public final TTToolSet COPPER_TOOLS; public final TTToolSet COPPER;
public final TTToolSet BRONZE_TOOLS; public final TTToolSet BRONZE;
public final TTToolSet STEEL_TOOLS; public final TTToolSet STEEL;
public TTTools( ) public TTTools( )
{ {
this.COPPER_TOOLS = new TTToolSet( "copper" , MmmMaterials.METAL.COPPER.INGOT , // this.COPPER = new TTToolSet( "copper" , MmmMaterials.METAL.COPPER.INGOT , //
2 , 192 , 5.0f , 1.5f , 16 , 7 , -3 ); 2 , 192 , 5.0f , 1.5f , 16 , 7 , -3 );
this.BRONZE_TOOLS = new TTToolSet( "bronze" , MmmMaterials.ALLOY.BRONZE.INGOT , // this.BRONZE = new TTToolSet( "bronze" , MmmMaterials.ALLOY.BRONZE.INGOT , //
2 , 212 , 5.5f , 1.75f , 20 , 7.5f , -3.1f ); 2 , 212 , 5.5f , 1.75f , 20 , 7.5f , -3.1f );
this.STEEL_TOOLS = new TTToolSet( "steel" , MmmMaterials.ALLOY.STEEL.INGOT , // this.STEEL = new TTToolSet( "steel" , MmmMaterials.ALLOY.STEEL.INGOT , //
3 , 800 , 7f , 2.5f , 12 , 8.0f , -3f ); 3 , 800 , 7f , 2.5f , 12 , 8.0f , -3f );
} }
} }