From 85334d73e27a3bb9eb32daf28a7dd7bed34331f6 Mon Sep 17 00:00:00 2001 From: BucketBrigade <138534411+CookieBrigade@users.noreply.github.com> Date: Sat, 28 Sep 2024 06:43:45 -0500 Subject: [PATCH] Fix squeezer -> fluid extractor recipes (#3291) Co-authored-by: Martin Robertz --- 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) {