diff options
| author | charles <johnch18@isu.edu> | 2021-03-30 11:40:39 -0600 |
|---|---|---|
| committer | charles <johnch18@isu.edu> | 2021-03-30 11:40:39 -0600 |
| commit | 286a75db05173d7c338ce99bda4fd3a8cb68f9f6 (patch) | |
| tree | d725b3c3816c83acf89a7433b8d251fae8592143 /src/main/java/gregtech/loaders/oreprocessing | |
| parent | 5630eeea4486b1631631d5fe1615d6dfd093ed9b (diff) | |
| parent | e8a9f612f94c01ab857e691e8e6f1b8742a72d18 (diff) | |
| download | GT5-Unofficial-286a75db05173d7c338ce99bda4fd3a8cb68f9f6.tar.gz GT5-Unofficial-286a75db05173d7c338ce99bda4fd3a8cb68f9f6.tar.bz2 GT5-Unofficial-286a75db05173d7c338ce99bda4fd3a8cb68f9f6.zip | |
Merge https://github.com/GTNewHorizons/GT5-Unofficial into mccoverfix
Fixing my sh*t because apparently I can't use git
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing')
| -rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingFineWire.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFineWire.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFineWire.java index 7ed86696fe..620d62211e 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFineWire.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFineWire.java @@ -17,8 +17,8 @@ public class ProcessingFineWire implements gregtech.api.interfaces.IOreRecipeReg public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) { if (!aMaterial.contains(gregtech.api.enums.SubTag.NO_SMASHING)) { - GT_Values.RA.addWiremillRecipe(GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 1L), GT_Utility.copy(GT_OreDictUnificator.get(OrePrefixes.wireGt01, aMaterial, 2L), GT_Utility.copyAmount(8L, aStack)), 500, 4); - GT_Values.RA.addWiremillRecipe(GT_OreDictUnificator.get(OrePrefixes.stick, aMaterial, 1L), GT_Utility.copy(GT_OreDictUnificator.get(OrePrefixes.wireGt01, aMaterial, 1L), GT_Utility.copyAmount(4L, aStack)), 200, 4); + GT_Values.RA.addWiremillRecipe(GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 1L), GT_Utility.copy(GT_OreDictUnificator.get(OrePrefixes.wireGt01, aMaterial, 2L), GT_Utility.copyAmount(8L, aStack)), 100, 4); + GT_Values.RA.addWiremillRecipe(GT_OreDictUnificator.get(OrePrefixes.stick, aMaterial, 1L), GT_Utility.copy(GT_OreDictUnificator.get(OrePrefixes.wireGt01, aMaterial, 1L), GT_Utility.copyAmount(4L, aStack)), 50, 4); } if ((aMaterial.mUnificatable) && (aMaterial.mMaterialInto == aMaterial) && !aMaterial.contains(SubTag.NO_WORKING)) { GT_ModHandler.addCraftingRecipe(GT_Utility.copyAmount(1L, aStack), GT_Proxy.tBits, new Object[]{"Xx", 'X', OrePrefixes.foil.get(aMaterial)}); |
