From eb0d3d0dee604e3eeff9c496b0bc4d374598a69e Mon Sep 17 00:00:00 2001 From: Alkalus Date: Wed, 20 Sep 2017 00:38:39 +1000 Subject: $ Fixed Cyclotron recipe handling. + Added pollution to the Thermal Boiler. --- src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/recipes') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java b/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java index 16b38d06bc..d6b2fe0699 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java @@ -330,7 +330,7 @@ public class GregtechRecipeAdder implements IGregtech_RecipeAdder { public boolean addCyclotronRecipe(ItemStack aInput, FluidStack aFluidInput, ItemStack[] aOutputs, FluidStack aFluidOutput, int[] aChances, int aDuration, int aEUt, int aSpecialValue) { - if ((aInput == null) || (aOutputs == null) || (aFluidInput == null)) { + if (aOutputs == null) { return false; } for (ItemStack tStack : aOutputs) { -- cgit