diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-04-24 22:05:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-24 23:05:33 +0200 |
commit | bd35c1593cbd7828134f2367e566d5d3108583ac (patch) | |
tree | 9f01161f2df66ccef23c7deed56039cef072f334 /src | |
parent | c7d62679bf52955e63cb40b1ce0e7fc47c710969 (diff) | |
download | GT5-Unofficial-bd35c1593cbd7828134f2367e566d5d3108583ac.tar.gz GT5-Unofficial-bd35c1593cbd7828134f2367e566d5d3108583ac.tar.bz2 GT5-Unofficial-bd35c1593cbd7828134f2367e566d5d3108583ac.zip |
Efficiency Changes in the Universal Chemical Fuel Engine (#12)
* Efficiency Coefficient Changes
- Changed the coefficients for the formulas used to calculate the fuel efficiency of Diesel and Gas fuels. This should penalize the usage of simpler, low fuel value fuels compared to their more complex, higher fuel value alternatives.
* Changed Files that are Supposed to be Ignored
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/UniversalChemicalFuelEngine.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/UniversalChemicalFuelEngine.java b/src/main/java/goodgenerator/blocks/tileEntity/UniversalChemicalFuelEngine.java index 10aace0baf..2a55b258df 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/UniversalChemicalFuelEngine.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/UniversalChemicalFuelEngine.java @@ -35,8 +35,8 @@ import static gregtech.api.util.GT_StructureUtility.ofHatchAdder; public class UniversalChemicalFuelEngine extends GT_MetaTileEntity_TooltipMultiBlockBase_EM implements IConstructable { - protected final double DIESEL_EFFICIENCY_COEFFICIENT = 0.02D; - protected final double GAS_EFFICIENCY_COEFFICIENT = 0.01D; + protected final double DIESEL_EFFICIENCY_COEFFICIENT = 0.04D; + protected final double GAS_EFFICIENCY_COEFFICIENT = 0.04D; protected final double ROCKET_EFFICIENCY_COEFFICIENT = 0.005D; protected final double EFFICIENCY_CEILING = 1.5D; |