aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
index d2bee058e1..f43aae74b6 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
@@ -7,36 +7,36 @@ import gtPlusPlus.core.material.Material;
public class RecipeGen_AlloySmelter implements Runnable{
final Material toGenerate;
-
+
public RecipeGen_AlloySmelter(final Material M){
this.toGenerate = M;
}
-
+
@Override
public void run() {
- generateRecipes(toGenerate);
+ generateRecipes(this.toGenerate);
}
-
+
public static void generateRecipes(final Material material){
final int tVoltageMultiplier = material.getMeltingPointK() >= 2800 ? 60 : 15;
-
+
//Nuggets
GT_Values.RA.addAlloySmelterRecipe(
material.getIngot(1),
ItemList.Shape_Mold_Nugget.get(1),
material.getNugget(9),
(int) Math.max(material.getMass() * 2L, 1L),
- 2 * tVoltageMultiplier);
-
+ 2 * tVoltageMultiplier);
+
//Gears
GT_Values.RA.addAlloySmelterRecipe(
material.getIngot(8),
ItemList.Shape_Mold_Gear.get(1),
material.getGear(1),
(int) Math.max(material.getMass() * 2L, 1L),
- 2 * tVoltageMultiplier);
-
- }
-
+ 2 * tVoltageMultiplier);
+
+ }
+
}