aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator
diff options
context:
space:
mode:
authorGlodBlock <1356392126@qq.com>2022-01-26 15:23:02 +0800
committerGlodBlock <1356392126@qq.com>2022-01-26 15:23:02 +0800
commitf9b0e807b59537299b0725a3d0f4c7497f4713ba (patch)
treecc7528878f1cb93c60396a70a64486e621aca3bc /src/main/java/goodgenerator
parent2f8385abc6262bbafe0711415fa3ec2780752955 (diff)
downloadGT5-Unofficial-f9b0e807b59537299b0725a3d0f4c7497f4713ba.tar.gz
GT5-Unofficial-f9b0e807b59537299b0725a3d0f4c7497f4713ba.tar.bz2
GT5-Unofficial-f9b0e807b59537299b0725a3d0f4c7497f4713ba.zip
use 0lafe suggestion for the combustion eff
Diffstat (limited to 'src/main/java/goodgenerator')
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/GTMetaTileEntity/DieselGenerator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/GTMetaTileEntity/DieselGenerator.java b/src/main/java/goodgenerator/blocks/tileEntity/GTMetaTileEntity/DieselGenerator.java
index 2f080d6b32..43ed65da23 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/GTMetaTileEntity/DieselGenerator.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/GTMetaTileEntity/DieselGenerator.java
@@ -25,7 +25,7 @@ public class DieselGenerator extends GT_MetaTileEntity_BasicGenerator {
super(aID, aName, aNameRegional, aTier, new String[]{
"Requires liquid Fuel",
"Causes " + (int) (GT_Mod.gregtechproxy.mPollutionBaseDieselGeneratorPerSecond * (1.1 - aTier * 0.1)) + " Pollution per second"});
- mEfficiency = 100 - aTier * 15;
+ mEfficiency = 100 - aTier * 10;
}
public DieselGenerator(String aName, int aTier, String[] aDescription, ITexture[][][] aTextures) {