From 5b869fc10dea99b949d82d71f87e5b12b935f45b Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 24 May 2018 08:26:08 +1000 Subject: $ Small fix to canner recipes, which tried to generate using the input of slot two for the output, throwing null. --- src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_FluidCanning.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_FluidCanning.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_FluidCanning.java index be25b793a9..dbbd42e528 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_FluidCanning.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_FluidCanning.java @@ -48,7 +48,7 @@ public class RecipeGen_FluidCanning extends RecipeGen_Base { else { GT_Values.RA.addFluidCannerRecipe( recipe.mInputs[0], //Input - recipe.mInputs[1], //Input 2 + recipe.mOutputs[0], //Input 2 recipe.mFluidInputs[0], //Fluid Input recipe.mFluidOutputs[0] //Fluid Output ); -- cgit