aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-11-15 00:59:16 +1000
committerAlkalus <draknyte1@hotmail.com>2017-11-15 00:59:16 +1000
commitfd0f1cf3393c6fe9d520fc52049dfbf697087421 (patch)
tree0e865c5819c904166296674aceba08fca15f5557 /src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
parentcb9f0c4abfe54ef509165b13881cbd511ce946bb (diff)
downloadGT5-Unofficial-fd0f1cf3393c6fe9d520fc52049dfbf697087421.tar.gz
GT5-Unofficial-fd0f1cf3393c6fe9d520fc52049dfbf697087421.tar.bz2
GT5-Unofficial-fd0f1cf3393c6fe9d520fc52049dfbf697087421.zip
+ Gave GT++ Nuggets some use, they're now craftable into ingots.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
index f43aae74b6..c596bf0a4c 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
@@ -35,6 +35,14 @@ public class RecipeGen_AlloySmelter implements Runnable{
material.getGear(1),
(int) Math.max(material.getMass() * 2L, 1L),
2 * tVoltageMultiplier);
+
+ //Ingot
+ GT_Values.RA.addAlloySmelterRecipe(
+ material.getNugget(9),
+ ItemList.Shape_Mold_Ingot.get(1),
+ material.getIngot(1),
+ (int) Math.max(material.getMass() * 2L, 1L),
+ 2 * tVoltageMultiplier);
}