diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-11-23 14:34:52 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-11-23 14:34:52 +1000 |
commit | ada3ae2bbcd293b3239e58b69aa33f860dd9aa3c (patch) | |
tree | fd7ce8a518c0a75e28d15a765edd67a4c298a244 /src/Java/gtPlusPlus/core | |
parent | b8dd731e4f8028cf46cb823c8904da7d4b13db6d (diff) | |
download | GT5-Unofficial-ada3ae2bbcd293b3239e58b69aa33f860dd9aa3c.tar.gz GT5-Unofficial-ada3ae2bbcd293b3239e58b69aa33f860dd9aa3c.tar.bz2 GT5-Unofficial-ada3ae2bbcd293b3239e58b69aa33f860dd9aa3c.zip |
- 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. :)
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_LaserEngraver.java | 5 |
1 files changed, 5 insertions, 0 deletions
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())) { |