From b7e65b634a490b06c0276f197da818d2a5227ef2 Mon Sep 17 00:00:00 2001 From: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Date: Tue, 20 Sep 2022 06:37:06 +0100 Subject: Fix typo in GigaChad recipe (#1392) * Adjust uncraftable recipe to make it craftable. * Fix * spotlessApply (#1393) Co-authored-by: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Co-authored-by: GitHub GTNH Actions <> Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/main') diff --git a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java index dd7867ac9c..2d9bc7880b 100644 --- a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java +++ b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java @@ -6554,9 +6554,11 @@ public class GT_MachineRecipeLoader implements Runnable { ItemList.Field_Generator_UIV.get(64), ItemList.Field_Generator_UMV.get(64) }, - new FluidStack[] {Materials.ExcitedDTEC.getFluid(100_000_000)}, + new FluidStack[] { + Materials.ExcitedDTEC.getFluid(100_000_000), Materials.SpaceTime.getMolten(64 * 2 * 9 * 144) + }, new ItemStack[] {ItemList.GigaChad.get(1)}, - new FluidStack[] {Materials.SpaceTime.getMolten(64 * 2 * 9 * 144)}, + new FluidStack[] {GT_Values.NF}, 86400 * 20 * 2, 2_000_000_000, 13500); -- cgit