diff options
author | miozune <miozune@gmail.com> | 2023-02-05 19:29:15 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 11:29:15 +0100 |
commit | 80fa02e61233286de5ae486682ecd3f93dd5c20c (patch) | |
tree | 960827f91f8dbb16e066e0423094ebd98584edba /src/main/java/gregtech/api/util/GT_Recipe.java | |
parent | 527a5ef507975200f96680459bb30b953f128247 (diff) | |
download | GT5-Unofficial-80fa02e61233286de5ae486682ecd3f93dd5c20c.tar.gz GT5-Unofficial-80fa02e61233286de5ae486682ecd3f93dd5c20c.tar.bz2 GT5-Unofficial-80fa02e61233286de5ae486682ecd3f93dd5c20c.zip |
Set minimal amount of input items to 0 for fluid heater recipes (#1717)
Diffstat (limited to 'src/main/java/gregtech/api/util/GT_Recipe.java')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Recipe.java | 8 |
1 files changed, 4 insertions, 4 deletions
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<GT_Recipe> { RES_PATH_GUI + "basicmachines/FluidHeater", 1, 0, - 1, + 0, 0, 1, E, @@ -3441,7 +3441,7 @@ public class GT_Recipe implements Comparable<GT_Recipe> { /** * 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<GT_Recipe> { /** * 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<GT_Recipe> { /** * 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 |