From a92ef48bc3626e271302d2498057eb4f27bd4a37 Mon Sep 17 00:00:00 2001 From: CookieBrigade <138534411+CookieBrigade@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:46:42 -0500 Subject: [PATCH] Fix squeezer -> fluid extractor recipes --- src/main/java/gregtech/api/util/GTForestryCompat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/gregtech/api/util/GTForestryCompat.java b/src/main/java/gregtech/api/util/GTForestryCompat.java index 86eaa519e7..58045596c4 100644 --- a/src/main/java/gregtech/api/util/GTForestryCompat.java +++ b/src/main/java/gregtech/api/util/GTForestryCompat.java @@ -176,7 +176,7 @@ public static void transferSqueezerRecipes() { if ((resources.length == 1) && (tRecipe.getFluidOutput() != null) && (resources[0] != null)) { Item input = resources[0].getItem(); if (input == Items.pumpkin_seeds || input == Items.melon_seeds || input == Items.wheat_seeds) - return; + continue; GTRecipeBuilder recipeBuilder = GTValues.RA.stdBuilder(); recipeBuilder.itemInputs(resources[0]); if (tRecipe.getRemnants() != null) {