diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2017-04-10 12:54:11 +0200 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2017-04-10 12:54:11 +0200 |
commit | 706d2e4bd5587bc8666ef37b2ef3e3be701b8d0c (patch) | |
tree | b695549ae55166a5d6163f7fc97cb307a6934cdd /src/main/java/gregtech | |
parent | 13043923c0bd6b6801f0d0b92427cdc72f46000c (diff) | |
download | GT5-Unofficial-706d2e4bd5587bc8666ef37b2ef3e3be701b8d0c.tar.gz GT5-Unofficial-706d2e4bd5587bc8666ef37b2ef3e3be701b8d0c.tar.bz2 GT5-Unofficial-706d2e4bd5587bc8666ef37b2ef3e3be701b8d0c.zip |
All foils can be made in bender.
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java index c024c76e83..ce46671fdb 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java @@ -17,9 +17,9 @@ public class ProcessingFoil implements IOreRecipeRegistrator { } public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) { - if (!aMaterial.contains(SubTag.NO_SMASHING)) { +// if (!aMaterial.contains(SubTag.NO_SMASHING)) { GT_Values.RA.addBenderRecipe(GT_Utility.copyAmount(1L, GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 4L)), GT_OreDictUnificator.get(OrePrefixes.foil, aMaterial, 4L), (int) Math.max(aMaterial.getMass(), 1L), 24); - } +// } GregTech_API.registerCover(aStack, new GT_RenderedTexture(aMaterial.mIconSet.mTextures[70], aMaterial.mRGBa, false), null); } } |