Skip to content

Commit

Permalink
made hard carbon config not do anything for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Nov 16, 2024
1 parent 3684658 commit bce679b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ public static void init() {
});
AUTOCLAVE.RB().ii(DUST.getMaterialIngredient(Bauxite, 2), DUST.getMaterialIngredient(SodiumHydroxide, 3)).fi(DistilledWater.getLiquid(1000)).io(DUST.get(SodiumAluminate, 4), DUST_TINY.get(Ilmenite, 1), DUST_TINY.get(Rutile, 1)).outputChances(1.0, 0.25, 0.5).add("bauxite_distilled_water", 1500, 16);
AUTOCLAVE.RB().ii(DUST.getMaterialIngredient(Bauxite, 2), DUST.getMaterialIngredient(SodiumHydroxide, 3)).fi(Water.getLiquid(1000)).io(DUST.get(SodiumAluminate, 4), DUST_TINY.get(Ilmenite, 1), DUST_TINY.get(Rutile, 1)).outputChances(1.0, 0.25, 0.5).add("bauxite", 3000, 16);
if (GT5RConfig.HARD_CARBON.get()){
/*if (GT5RConfig.HARD_CARBON.get()){
AUTOCLAVE.RB().ii(DUST.getMaterialIngredient(Materials.Carbon, 4)).fi(Materials.Platinum.getLiquid(1)).io(new ItemStack(GTCoreItems.CarbonFibre, 2)).add("carbon_fibre", 150, 5);
AUTOCLAVE.RB().ii(DUST.getMaterialIngredient(Materials.Carbon, 4)).fi(Materials.Lutetium.getLiquid(1)).io(new ItemStack(GTCoreItems.CarbonFibre, 2)).add("carbon_fibre_1", 150, 5);
AUTOCLAVE.RB().ii(DUST.getMaterialIngredient(Materials.Carbon, 4)).fi(Materials.Palladium.getLiquid(1)).io(new ItemStack(GTCoreItems.CarbonFibre, 2)).add("carbon_fibre_2", 150, 5);
}
}*/
AUTOCLAVE.RB().ii(DUST.getMaterialIngredient(Energium, 9)).fi(DistilledWater.getLiquid(1000)).io(EnergyCrystal).add("energy_crystal_distilled_water", 250, 256);
AUTOCLAVE.RB().ii(DUST.getMaterialIngredient(Energium, 9)).fi(Water.getLiquid(1000)).io(EnergyCrystal).add("energy_crystal", 500, 256);
AUTOCLAVE.RB().ii(RecipeIngredient.of(1, GEM_EXQUISITE.getMaterialTag(Sapphire), GEM_EXQUISITE.getMaterialTag(GreenSapphire))).fi(Lapotronium.getLiquid(1000)).io(RawLapotronCrustal).add("raw_lapotron_crystal", 250, 256);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public static void init() {
}
});
WIRE_MILL.RB().ii(FLUID_PIPE_STEEL.getBlockItem(PipeSize.TINY)).io(GT5RBlocks.MINING_PIPE_THIN.asItem()).add("mining_pipe", 200, 16);
if (!GT5RConfig.HARD_CARBON.get()){
//if (!GT5RConfig.HARD_CARBON.get()){
WIRE_MILL.RB().ii(DUST.getMaterialIngredient(Carbon, 8)).io(GTCoreItems.CarbonFibre).add("carbon_fibre", 400, 2);
}
//}
}
}

0 comments on commit bce679b

Please sign in to comment.