From 023988e2858db9d99f13a322ee93e86e20c00859 Mon Sep 17 00:00:00 2001 From: Abdiel Kavash <19243993+AbdielKavash@users.noreply.github.com> Date: Thu, 21 Dec 2023 18:24:58 -0600 Subject: Allow emptying of fluid tanks by placing them anywhere in the crafting grid. (#814) Change fluid tank emptying recipe to be shapeless. --- src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 3d8a15a652..fabdb06d50 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -1276,17 +1276,7 @@ public class RECIPES_Machines { GregtechItemList.GT_FluidTank_LV, GregtechItemList.GT_FluidTank_MV, GregtechItemList.GT_FluidTank_HV }; for (GregtechItemList aTank : aTanks) { - RecipeUtils.addShapedGregtechRecipe( - aTank.get(1), - null, - null, - null, - null, - null, - null, - null, - null, - aTank.get(1)); + RecipeUtils.addShapelessGregtechRecipe(new Object[] { aTank.get(1) }, aTank.get(1)); } RecipeUtils.addShapedGregtechRecipe( -- cgit