aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
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
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')
-rw-r--r--src/main/java/gtPlusPlus/core/item/ModItems.java2
-rw-r--r--src/main/java/gtPlusPlus/core/material/ALLOY.java2
-rw-r--r--src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java15
3 files changed, 17 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/core/item/ModItems.java b/src/main/java/gtPlusPlus/core/item/ModItems.java
index 170ff05ccc..6820c8ddac 100644
--- a/src/main/java/gtPlusPlus/core/item/ModItems.java
+++ b/src/main/java/gtPlusPlus/core/item/ModItems.java
@@ -638,7 +638,7 @@ public final class ModItems {
MaterialGenerator.generate(ALLOY.BABBIT_ALLOY, false);
MaterialGenerator.generate(ALLOY.BLACK_TITANIUM, false);
- MaterialGenerator.generate(ALLOY.INDALLOY_140, false);
+ MaterialGenerator.generate(ALLOY.INDALLOY_140, false, false);
// High Level Bioplastic
MaterialGenerator.generate(ELEMENT.STANDALONE.RHUGNOR, false, false);
diff --git a/src/main/java/gtPlusPlus/core/material/ALLOY.java b/src/main/java/gtPlusPlus/core/material/ALLOY.java
index 4aafc699a3..5283df8205 100644
--- a/src/main/java/gtPlusPlus/core/material/ALLOY.java
+++ b/src/main/java/gtPlusPlus/core/material/ALLOY.java
@@ -976,7 +976,7 @@ public final class ALLOY {
6500,
-1,
-1,
- true, //Uses Blast furnace?
+ false, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
new MaterialStack(ELEMENT.getInstance().BISMUTH, 47),
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);