From e7da0d15a5663a17e664f13a04ce2d4b6998ffea Mon Sep 17 00:00:00 2001 From: Alkalus Date: Thu, 24 Aug 2017 10:50:25 +1000 Subject: % Made Fission Fuel Production cost 1/8th eu/t. % Initial work on FFPP recipe handling. --- src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/core') diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 96714bee6f..6c604b338d 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -390,7 +390,7 @@ public class RECIPES_GREGTECH { FluidUtils.getFluidStack(LiFBeF2ZrF4UF4, 10000), //Output Fluid 1 null, //Output Fluid 2 60*60*20, //Duration - 4740); + 500); //7LiF - BeF2 - ZrF4 - U235 - 590C CORE.RA.addFissionFuel( @@ -402,7 +402,7 @@ public class RECIPES_GREGTECH { FluidUtils.getFluidStack(LiFBeF2ZrF4U235, 10000), //Output Fluid 1 null, //Output Fluid 2 45*60*20, //Duration - 4740); + 500); //7liF - BeF2 - ThF4 - UF4 - 566C CORE.RA.addFissionFuel( @@ -414,7 +414,7 @@ public class RECIPES_GREGTECH { FluidUtils.getFluidStack(LiFBeF2ThF4UF4, 10000), //Output Fluid 1 null, //Output Fluid 2 60*60*20, //Duration - 4740); + 500); }catch (final NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} } -- cgit