diff options
author | Turtle <66276047+Eysla@users.noreply.github.com> | 2023-07-22 09:20:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 16:20:05 +0200 |
commit | f4a1693e828bf047b21fd3ac3711e090bb5a3b98 (patch) | |
tree | 331422ebeef419c1b40367bcfcfcb6c6cab5a80a /src/main/java | |
parent | f0e2d536ff755d2fa6f7246c5195011f0981a426 (diff) | |
download | GT5-Unofficial-f4a1693e828bf047b21fd3ac3711e090bb5a3b98.tar.gz GT5-Unofficial-f4a1693e828bf047b21fd3ac3711e090bb5a3b98.tar.bz2 GT5-Unofficial-f4a1693e828bf047b21fd3ac3711e090bb5a3b98.zip |
buff rutile yield from garnet processing (#2154)
in https://github.com/GTNewHorizons/GT5-Unofficial/pull/1927 titaniumtetrachloride was changed to need 3 rutile instead of 1. This was the result of new processing lines for bauxite and ilmenite that yielded much higher amounts. As a result of the changes to titaniumtetrachloride all other sources of rutile were nerfed by a factor of three. This change would return rutile to the same yield of titanium as before the titaniumtetrachloride rebalance
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java b/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java index 1f49217821..57bf5f9c0b 100644 --- a/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java +++ b/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java @@ -263,7 +263,7 @@ public class GT_BauxiteRefineChain { Materials.Gold.getDust(1), Materials.Vanadium.getDust(1), Materials.Rutile.getDust(1)) - .outputChances(5000, 4000, 300, 300, 200, 200) + .outputChances(5000, 4000, 300, 300, 200, 600) .fluidInputs(Materials.NitricAcid.getFluid(10)) .fluidOutputs(MaterialsOreAlum.SluiceJuice.getFluid(10)) .duration(2 * SECONDS + 5 * TICKS) |