Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Fixed Indalloy Recipe Time #199

Merged
merged 1 commit into from
Jun 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/gtPlusPlus/core/item/ModItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ public static final void init(){

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);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gtPlusPlus/core/material/ALLOY.java
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
15 changes: 15 additions & 0 deletions src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
Original file line number Diff line number Diff line change
Expand Up @@ -1011,6 +1011,21 @@ private static void blastSmelterRecipes() {
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);



Expand Down