diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-01-07 17:11:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 17:11:47 +0100 |
commit | 27cbc7364bdd0f8563946d31c54df2bd21bc8b8d (patch) | |
tree | 9d06d58b5bf6dca2c72d0da68f79c19602a50836 /src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java | |
parent | ecc644c221b8b218cac431f66468882580504e7d (diff) | |
parent | 67074a4aaf64a6d43f893c2860113dbc336d3e45 (diff) | |
download | GT5-Unofficial-27cbc7364bdd0f8563946d31c54df2bd21bc8b8d.tar.gz GT5-Unofficial-27cbc7364bdd0f8563946d31c54df2bd21bc8b8d.tar.bz2 GT5-Unofficial-27cbc7364bdd0f8563946d31c54df2bd21bc8b8d.zip |
Merge branch 'experimental' into GT-Tools
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java index 8a4e11569e..9c049e7360 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java @@ -15,7 +15,7 @@ public class ProcessingCrystallized implements gregtech.api.interfaces.IOreRecip } public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) { - GT_Values.RA.addForgeHammerRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial.mMacerateInto, 1L), 10, 16); - GT_ModHandler.addPulverisationRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial.mMacerateInto, 1L), null, 10, false); + GT_Values.RA.addForgeHammerRecipe(GT_Utility.copyAmount(1L, aStack), GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial.mMacerateInto, 1L), 10, 16); + GT_ModHandler.addPulverisationRecipe(GT_Utility.copyAmount(1L, aStack), GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial.mMacerateInto, 1L), null, 10, false); } } |