aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorSteelux <70096037+Steelux8@users.noreply.github.com>2022-06-02 16:22:31 +0100
committerGitHub <noreply@github.com>2022-06-02 17:22:31 +0200
commitc79156fbd7be45785c4829debfa152888a7eb8b0 (patch)
treee0f3550f6684271afe77b306168104112a46b075 /src/main/java/gtPlusPlus/core/recipe
parent8bde03f5330693cfb1c04c256af87f57ac86ca18 (diff)
downloadGT5-Unofficial-c79156fbd7be45785c4829debfa152888a7eb8b0.tar.gz
GT5-Unofficial-c79156fbd7be45785c4829debfa152888a7eb8b0.tar.bz2
GT5-Unofficial-c79156fbd7be45785c4829debfa152888a7eb8b0.zip
Fixed Indalloy Recipe Time (#199)
- Manually added the ABS recipe to Indalloy, instead of the auto-generated one, since the previous one has a higher recipe time than indended when CoreMod is loaded.
Diffstat (limited to 'src/main/java/gtPlusPlus/core/recipe')
-rw-r--r--src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
index fb21b40618..d7f30c3ee6 100644
--- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
+++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
@@ -1011,6 +1011,21 @@ public class RECIPES_GREGTECH {
20 * 75,
7680);
+ //INDALLOY_140
+ CORE.RA.addBlastSmelterRecipe(
+ new ItemStack[] {
+ ItemUtils.getGregtechCircuit(5),
+ ELEMENT.getInstance().BISMUTH.getDust(47),
+ ELEMENT.getInstance().LEAD.getDust(25),
+ ELEMENT.getInstance().TIN.getDust(13),
+ ELEMENT.getInstance().CADMIUM.getDust(10),
+ ELEMENT.getInstance().INDIUM.getDust(5)
+
+ },
+ ALLOY.INDALLOY_140.getFluidStack(100 * 144),
+ 0,
+ 20 * 40,
+ 7680);