From ada3ae2bbcd293b3239e58b69aa33f860dd9aa3c Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 23 Nov 2016 14:34:52 +1000 Subject: - removed hard railcraft dependency. % Changed log messages for missing material components. Now it lets the user know they can re-enable it themselves if they don't want to wait on Blood to fix it. :) --- src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java index 189d05c0ad..757a46d00d 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java @@ -22,18 +22,21 @@ public class RECIPES_LaserEngraver implements IOreRecipeRegistrator { } else { Utils.LOG_INFO("foilYttriumBariumCuprate 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."); } if (ItemUtils.getItemStackOfAmountFromOreDictNoBroken("foilVanadiumGallium", 1) != null){ GT_Values.RA.addLaserEngraverRecipe(GT_OreDictUnificator.get(OrePrefixes.foil, Materials.VanadiumGallium, 2L), GT_Utility.copyAmount(0L, new Object[]{aStack}), GregtechItemList.Circuit_Parts_Wiring_IV.get(1L, new Object[0]), 64, 480); } else { Utils.LOG_INFO("foilVanadiumGallium 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."); } if (ItemUtils.getItemStackOfAmountFromOreDictNoBroken("foilNiobiumTitanium", 1) != null){ GT_Values.RA.addLaserEngraverRecipe(GT_OreDictUnificator.get(OrePrefixes.foil, Materials.NiobiumTitanium, 2L), GT_Utility.copyAmount(0L, new Object[]{aStack}), GregtechItemList.Circuit_Parts_Wiring_IV.get(1L, new Object[0]), 64, 480); } else { Utils.LOG_INFO("foilNiobiumTitanium 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."); } @@ -43,6 +46,7 @@ public class RECIPES_LaserEngraver implements IOreRecipeRegistrator { } else { Utils.LOG_INFO("foilOsmium 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."); } } else if (aOreDictName.equals(OreDictNames.craftingLensCyan.toString())) { @@ -53,6 +57,7 @@ public class RECIPES_LaserEngraver implements IOreRecipeRegistrator { } else { Utils.LOG_INFO("foilNaquadah 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."); } } else if (aOreDictName.equals(OreDictNames.craftingLensWhite.toString())) { -- cgit