diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-06-10 11:24:59 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-06-10 11:24:59 +1000 |
commit | 1767b5a2943ab483616b8b69e4027997e028d5cc (patch) | |
tree | 3530e7d40758e5068f0e5215280b0ae691a2a675 /src/Java/gtPlusPlus/core/util/recipe | |
parent | fd522373d72560e66c4d40a69664ba424dbd30cc (diff) | |
download | GT5-Unofficial-1767b5a2943ab483616b8b69e4027997e028d5cc.tar.gz GT5-Unofficial-1767b5a2943ab483616b8b69e4027997e028d5cc.tar.bz2 GT5-Unofficial-1767b5a2943ab483616b8b69e4027997e028d5cc.zip |
+ Added Recipes for Coil Wires.
+ Added Recipes for Wire Coils.
% Tweaked Advanced Boiler recipes to now require Huge pipes.
% Changed a handful of recipes to utilise the new GT circuits.
+ Added my custom circuits to the same OreDict tags as the new GT ones, so they are interchangeable.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java b/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java index ca7d1cf6ea..72c33a2011 100644 --- a/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java +++ b/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java @@ -404,7 +404,10 @@ public class RecipeUtils { public static boolean addShapelessGregtechRecipe(final Object[] inputItems, final ItemStack OutputItem){ //Catch Invalid Recipes - if (inputItems.length > 9 || inputItems.length < 2){ + if (inputItems.length > 9 || inputItems.length < 1){ + if (OutputItem != null){ + Utils.LOG_INFO("Invalid input array for shapeless recipe, which should output "+OutputItem.getDisplayName()); + } return false; } //let gregtech handle shapeless recipes. |