diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-01-07 17:01:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 17:01:01 +0100 |
commit | 67074a4aaf64a6d43f893c2860113dbc336d3e45 (patch) | |
tree | 536815ece1c0007fe1a1f315866d90eb11c4a8eb /src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java | |
parent | 326ed7e748c228fa330f5806504eba4914e6bb24 (diff) | |
parent | 083d45487ef5419483eb2d654e3ce17d240af835 (diff) | |
download | GT5-Unofficial-67074a4aaf64a6d43f893c2860113dbc336d3e45.tar.gz GT5-Unofficial-67074a4aaf64a6d43f893c2860113dbc336d3e45.tar.bz2 GT5-Unofficial-67074a4aaf64a6d43f893c2860113dbc336d3e45.zip |
Merge pull request #393 from GTNewHorizons/cleanup_and_speedup
Cleanup and speedup
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java index f97b361a75..1bb5e31785 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java @@ -16,9 +16,9 @@ public class ProcessingStoneCobble implements gregtech.api.interfaces.IOreRecipe } public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) { - GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), GT_OreDictUnificator.get(OrePrefixes.stick, Materials.Wood, 1L), new ItemStack(Blocks.lever, 1), 400, 1); - GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(8L, new Object[]{aStack}), ItemList.Circuit_Integrated.getWithDamage(0L, 8L, new Object[0]), new ItemStack(Blocks.furnace, 1), 400, 4); - GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(7L, new Object[]{aStack}), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Redstone, 1L), new ItemStack(Blocks.dropper, 1), 400, 4); - GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(7L, new Object[]{aStack}), new ItemStack(Items.bow, 1, 0), Materials.Redstone.getMolten(144L), new ItemStack(Blocks.dispenser, 1), 400, 4); + GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(1L, aStack), GT_OreDictUnificator.get(OrePrefixes.stick, Materials.Wood, 1L), new ItemStack(Blocks.lever, 1), 400, 1); + GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(8L, aStack), ItemList.Circuit_Integrated.getWithDamage(0L, 8L), new ItemStack(Blocks.furnace, 1), 400, 4); + GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(7L, aStack), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Redstone, 1L), new ItemStack(Blocks.dropper, 1), 400, 4); + GT_Values.RA.addAssemblerRecipe(GT_Utility.copyAmount(7L, aStack), new ItemStack(Items.bow, 1, 0), Materials.Redstone.getMolten(144L), new ItemStack(Blocks.dispenser, 1), 400, 4); } } |