aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators
diff options
context:
space:
mode:
authorbotn365 <42187820+botn365@users.noreply.github.com>2020-01-13 20:06:41 +0100
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2020-01-13 19:06:41 +0000
commit502fc2d8887189f0003361d09c71985c054010ea (patch)
treea82147155ecf327e64cac057c33c603df637fc59 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators
parentbc630f3a7738e4a495cdc1672949d934f76838e3 (diff)
downloadGT5-Unofficial-502fc2d8887189f0003361d09c71985c054010ea.tar.gz
GT5-Unofficial-502fc2d8887189f0003361d09c71985c054010ea.tar.bz2
GT5-Unofficial-502fc2d8887189f0003361d09c71985c054010ea.zip
$ Minor fixes to balance (#605)
+ Added TT Dynamo support to the LRE. % Made Nitinol processing faster. % Removed double efficiency bonus from single block Rocket Engines. % Changed Efficiency drop-rate on LRE. % Removed cap on LRE power production. $ Changed pikyonium tier back to ZPM $ Fixed Output buffering check on Multiblocks. $ Fixed LRE disabled if too little fuel.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GregtechMetaTileEntityRocketFuelGenerator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GregtechMetaTileEntityRocketFuelGenerator.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GregtechMetaTileEntityRocketFuelGenerator.java
index 6a42232e40..7d20f1eb59 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GregtechMetaTileEntityRocketFuelGenerator.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GregtechMetaTileEntityRocketFuelGenerator.java
@@ -54,12 +54,12 @@ extends GregtechRocketFuelGeneratorBase {
}
public void onConfigLoad() {
- this.mEfficiency = GregTech_API.sMachineFile.get(ConfigCategories.machineconfig, "RocketEngine.efficiency.tier." + this.mTier, ((40+((this.mTier) * 16))/4)+(this.mTier));
+ this.mEfficiency = GregTech_API.sMachineFile.get(ConfigCategories.machineconfig, "RocketEngine.efficiency.tier." + this.mTier, 80 - (10 * (this.mTier - 4)));
}
@Override
public int getEfficiency() {
- int eff = ((40+((this.mTier) * 16))/4)+(this.mTier);
+ int eff = 80 - (10 * (this.mTier - 4));
return eff;
}