From c8e9f9cca3a597a6873e4c83ac7ae80fd943b086 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 27 Dec 2016 04:54:01 +1000 Subject: + Added a fluid extraction recipe for Double plates and Ingots. + Made Lithium-7 craftable, Lithium Plates to Li7 double plates. $ Fixed the Th232 centrifuge recipe having the incorrect output. --- src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 4 ++-- src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java | 7 +++++++ 2 files changed, 9 insertions(+), 2 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 c5476f5f89..4ef2e9fa79 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -408,12 +408,12 @@ public class RECIPES_GREGTECH { GT_Values.NF, GT_Values.NF, ELEMENT.getInstance().THORIUM232.getDust(2), - ELEMENT.getInstance().THORIUM.getDust(5), + ItemUtils.getItemStackOfAmountFromOreDict("dustSmallThorium", 20), ELEMENT.getInstance().URANIUM232.getDust(1), GT_Values.NI, GT_Values.NI, GT_Values.NI, - new int[]{10000, 10000, 10}, + new int[]{0, 0, 10}, 500*20, 2000); diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java index 757a46d00d..f9f5f1338b 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java @@ -61,6 +61,13 @@ public class RECIPES_LaserEngraver implements IOreRecipeRegistrator { } } else if (aOreDictName.equals(OreDictNames.craftingLensWhite.toString())) { + if (ItemUtils.getItemStackOfAmountFromOreDictNoBroken("plateLithium", 1) != null){ + GT_Values.RA.addLaserEngraverRecipe(GT_OreDictUnificator.get(OrePrefixes.plate, Materials.Lithium, 8L), GT_Utility.copyAmount(0L, new Object[]{aStack}), ItemUtils.getItemStackOfAmountFromOreDict("plateDoubleLithium7", 4), 6400, 2000); + } + else { + Utils.LOG_INFO("plateLithium does not exist within Gregtech, please report this issue to Blood-asp on github."); + Utils.LOG_INFO("This material item can be re-enabled within the gregtech configuration files, If you wish to fix this yourself."); + } } } } -- cgit