From df5f9d448647d5ccf9eb774a244319e54021ede0 Mon Sep 17 00:00:00 2001 From: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Date: Mon, 30 Jan 2023 18:19:51 +0000 Subject: General Fixes (#1702) * Fix missing machine recipes due to load order. * Fix missing compressor recipe * Add new compressor recipe adder method * Line * Narrow crafting restrictions on pipes * Crafting working, assembler not * Nonuple working * Spotless * Both assembler recipes exist * Pipe recipes finally working as they should. * Spotless * Working still * T-2 materials * Tier -> TierEU and a few corrections on recipes using full amps. * Fix comment * spotlessApply (#1703) Co-authored-by: GitHub GTNH Actions <> * Spotless * Remove comment * T-2 --------- 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/recipes/ForgeHammerRecipes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/gregtech/loaders/postload/recipes/ForgeHammerRecipes.java') diff --git a/src/main/java/gregtech/loaders/postload/recipes/ForgeHammerRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/ForgeHammerRecipes.java index e008493b23..7bcca9ea5a 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/ForgeHammerRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/ForgeHammerRecipes.java @@ -64,7 +64,7 @@ public class ForgeHammerRecipes implements Runnable { null, new FluidStack[] {Materials.Space.getMolten(1440L), Materials.Time.getMolten(1440L)}, 10 * 20, - (int) Tier.RECIPE_UXV); + (int) TierEU.RECIPE_UXV); if (isHardcoreEnderExpansionLoaded) { GT_Values.RA.addForgeHammerRecipe( -- cgit