diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-06-14 18:22:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-14 18:22:56 +0200 |
commit | 61e070f4e323e032011179a64b1c2c0edb01a607 (patch) | |
tree | f443580efdbcee565edca34598e76ac4343d68a4 /src/main | |
parent | 8fc187ecbb6d7a5913c1f8d00553f0a5284176be (diff) | |
parent | 877b266b327f37d5a28c3e8713d3de5ca0b2d455 (diff) | |
download | GT5-Unofficial-61e070f4e323e032011179a64b1c2c0edb01a607.tar.gz GT5-Unofficial-61e070f4e323e032011179a64b1c2c0edb01a607.tar.bz2 GT5-Unofficial-61e070f4e323e032011179a64b1c2c0edb01a607.zip |
Merge pull request #559 from Prometheus0000/FixRubber
Move log centrifuging for methane from GT++, also add circuit
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java index 778be1e7ca..dfccc35684 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java @@ -22,6 +22,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra GT_ModHandler.addExtractionRecipe(GT_Utility.copyAmount(1L, aStack), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.RawRubber, 1L)); GT_ModHandler.addPulverisationRecipe(GT_Utility.copyAmount(1L, aStack), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wood, 6L), ItemList.IC2_Resin.get(1L), 33, false); } else { + GT_Values.RA.addCentrifugeRecipe(GT_Utility.copyAmount(1L, aStack), GT_Utility.getIntegratedCircuit(1), null, Materials.Methane.getGas(60L), GT_Values.NI, GT_Values.NI, GT_Values.NI, GT_Values.NI, GT_Values.NI, GT_Values.NI, null, 200, 20); GT_ModHandler.addPulverisationRecipe(GT_Utility.copyAmount(1L, aStack), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wood, 6L), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wood, 1L), 80, false); } |