diff options
| author | Alkalus <draknyte1@hotmail.com> | 2017-09-20 00:38:39 +1000 |
|---|---|---|
| committer | Alkalus <draknyte1@hotmail.com> | 2017-09-20 00:38:39 +1000 |
| commit | eb0d3d0dee604e3eeff9c496b0bc4d374598a69e (patch) | |
| tree | 156fac8cd775f48ae32998ca5ea7ba5e335651ba /src/Java/gtPlusPlus/xmod/gregtech/recipes | |
| parent | 0d1a0e64ce6355a26d7770203a69b8cb0bcb6432 (diff) | |
| download | GT5-Unofficial-eb0d3d0dee604e3eeff9c496b0bc4d374598a69e.tar.gz GT5-Unofficial-eb0d3d0dee604e3eeff9c496b0bc4d374598a69e.tar.bz2 GT5-Unofficial-eb0d3d0dee604e3eeff9c496b0bc4d374598a69e.zip | |
$ Fixed Cyclotron recipe handling.
+ Added pollution to the Thermal Boiler.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/recipes')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
