aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util/recipe
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-06-10 11:24:59 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-06-10 11:24:59 +1000
commit1767b5a2943ab483616b8b69e4027997e028d5cc (patch)
tree3530e7d40758e5068f0e5215280b0ae691a2a675 /src/Java/gtPlusPlus/core/util/recipe
parentfd522373d72560e66c4d40a69664ba424dbd30cc (diff)
downloadGT5-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.java5
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.