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/ProcessingScrew.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/ProcessingScrew.java')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java index a083c7e468..ca93c8bb06 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java @@ -18,9 +18,9 @@ public class ProcessingScrew implements gregtech.api.interfaces.IOreRecipeRegist @Override public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) { if (!aMaterial.contains(SubTag.NO_WORKING)) { - GT_Values.RA.addLatheRecipe(GT_OreDictUnificator.get(OrePrefixes.bolt, aMaterial, 1L), GT_Utility.copyAmount(1L, new Object[]{aStack}), null, (int) Math.max(aMaterial.getMass() / 8L, 1L), 4); + GT_Values.RA.addLatheRecipe(GT_OreDictUnificator.get(OrePrefixes.bolt, aMaterial, 1L), GT_Utility.copyAmount(1L, aStack), null, (int) Math.max(aMaterial.getMass() / 8L, 1L), 4); if ((aMaterial.mUnificatable) && (aMaterial.mMaterialInto == aMaterial)) - GT_ModHandler.addCraftingRecipe(GT_OreDictUnificator.get(OrePrefixes.screw, aMaterial, 1L), GT_Proxy.tBits, new Object[]{"fX", "X ", Character.valueOf('X'), OrePrefixes.bolt.get(aMaterial)}); + GT_ModHandler.addCraftingRecipe(GT_OreDictUnificator.get(OrePrefixes.screw, aMaterial, 1L), GT_Proxy.tBits, new Object[]{"fX", "X ", 'X', OrePrefixes.bolt.get(aMaterial)}); } } } |