From 80fa02e61233286de5ae486682ecd3f93dd5c20c Mon Sep 17 00:00:00 2001 From: miozune Date: Sun, 5 Feb 2023 19:29:15 +0900 Subject: Set minimal amount of input items to 0 for fluid heater recipes (#1717) --- src/main/java/gregtech/api/util/GT_Recipe.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/gregtech/api/util') diff --git a/src/main/java/gregtech/api/util/GT_Recipe.java b/src/main/java/gregtech/api/util/GT_Recipe.java index 895dbf5ac3..32d841dfa8 100644 --- a/src/main/java/gregtech/api/util/GT_Recipe.java +++ b/src/main/java/gregtech/api/util/GT_Recipe.java @@ -1506,7 +1506,7 @@ public class GT_Recipe implements Comparable { RES_PATH_GUI + "basicmachines/FluidHeater", 1, 0, - 1, + 0, 0, 1, E, @@ -3441,7 +3441,7 @@ public class GT_Recipe implements Comparable { /** * Draws text on NEI recipe. - * + * * @param yShift y position to shift after this text */ @SuppressWarnings("SameParameterValue") @@ -3451,7 +3451,7 @@ public class GT_Recipe implements Comparable { /** * Draws text on NEI recipe. - * + * * @param xStart x position to start drawing * @param yShift y position to shift after this text */ @@ -5220,7 +5220,7 @@ public class GT_Recipe implements Comparable { /** * Add a breeder cell. - * + * * @param input raw stack. should be undamaged. * @param output breed output * @param heatMultiplier bonus progress per neutron pulse per heat step -- cgit