diff options
author | xSkewer <43712386+xSkewer@users.noreply.github.com> | 2022-07-05 10:39:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 21:39:09 +0700 |
commit | d8f2adc352c1d9ac1c810686f1befe2ac181c673 (patch) | |
tree | f4f04e4976853f078abac6798d177595e7c6e160 /src | |
parent | 9ff4f1485cb213f4297179f0977052b69f0f3ce3 (diff) | |
download | GT5-Unofficial-d8f2adc352c1d9ac1c810686f1befe2ac181c673.tar.gz GT5-Unofficial-d8f2adc352c1d9ac1c810686f1befe2ac181c673.tar.bz2 GT5-Unofficial-d8f2adc352c1d9ac1c810686f1befe2ac181c673.zip |
Reduce XL Gas Turbine pollution to 4000/s (#228)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Gas.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Gas.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Gas.java index 6221dba89d..c6342827da 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Gas.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Gas.java @@ -50,7 +50,7 @@ public class GT_MTE_LargeTurbine_Gas extends GregtechMetaTileEntity_LargerTurbin @Override public int getPollutionPerSecond(ItemStack aStack) { - return 5000; + return 4000; } public int getFuelValue(FluidStack aLiquid) { |