Skip to content

Commit

Permalink
Rework Indium comb Processing (GTNewHorizons#3051)
Browse files Browse the repository at this point in the history
Co-authored-by: boubou19 <[email protected]>
  • Loading branch information
StaffiX and boubou19 authored Sep 4, 2024
1 parent 5b5311a commit 08a7e1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,14 +408,15 @@ public static void RecipeLoad() {
// 2InPO4 + 3Ca = 2In + Ca3(PO4)2
GTValues.RA.stdBuilder()
.itemInputs(
GTUtility.getIntegratedCircuit(1),
indiumPhosphate.get(OrePrefixes.dust, 12),
GTOreDictUnificator.get(OrePrefixes.dust, Materials.Calcium, 3))
.itemOutputs(
GTOreDictUnificator.get(OrePrefixes.dust, Materials.Indium, 2),
GTOreDictUnificator.get(OrePrefixes.dust, Materials.TricalciumPhosphate, 5))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
.addTo(UniversalChemical);
.addTo(multiblockChemicalReactorRecipes);

GTValues.RA.stdBuilder()
.itemInputs(lowQualityNaquadriaPhosphate.get(OrePrefixes.dust, 10), Materials.SulfuricAcid.getCells(30))
Expand Down
1 change: 0 additions & 1 deletion src/main/java/gregtech/common/items/ItemComb.java
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,6 @@ public void initCombsRecipes() {
addProcessGT(CombType.COPPER, new Materials[] { Materials.Copper }, Voltage.LV);
addProcessGT(CombType.TIN, new Materials[] { Materials.Tin }, Voltage.LV);
addProcessGT(CombType.LEAD, new Materials[] { Materials.Lead }, Voltage.LV);
addProcessGT(CombType.INDIUM, new Materials[] { Materials.Indium }, Voltage.ZPM);
addProcessGT(CombType.NICKEL, new Materials[] { Materials.Nickel }, Voltage.LV);
addProcessGT(CombType.ZINC, new Materials[] { Materials.Zinc }, Voltage.LV);
addProcessGT(CombType.SILVER, new Materials[] { Materials.Silver }, Voltage.LV);
Expand Down

0 comments on commit 08a7e1f

Please sign in to comment.