diff options
author | Abdiel Kavash <19243993+AbdielKavash@users.noreply.github.com> | 2023-12-21 18:24:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 01:24:58 +0100 |
commit | 023988e2858db9d99f13a322ee93e86e20c00859 (patch) | |
tree | dc3c6fddfb9da44d5c86a337ad96b74a067bcde5 | |
parent | 61e647085358777df718d36a927009774506637c (diff) | |
download | GT5-Unofficial-023988e2858db9d99f13a322ee93e86e20c00859.tar.gz GT5-Unofficial-023988e2858db9d99f13a322ee93e86e20c00859.tar.bz2 GT5-Unofficial-023988e2858db9d99f13a322ee93e86e20c00859.zip |
Allow emptying of fluid tanks by placing them anywhere in the crafting grid. (#814)
Change fluid tank emptying recipe to be shapeless.
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 12 |
1 files changed, 1 insertions, 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( |