From 26f4a010b9caa2d892f7b7f42bd4eafb313082aa Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Sat, 15 Sep 2018 00:47:45 +1000 Subject: + Added custom doors. + Added new Rocket Fuels and various chemical compounds to produce them. + Added an ASM fix that removes Diesel and EIO/GC Rocket Fuel from GC and allows use of all 4 GT++ fuels instead. % Reworked Rocket Engine generators, to now use new fuels and produce heavy pollution. $ Fixed bug that could corrupt the Fluid Registry. --- .../base/generators/GregtechRocketFuelGeneratorBase.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java index db787c5e80..bef16c0bf7 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java @@ -60,16 +60,18 @@ public abstract class GregtechRocketFuelGeneratorBase extends GT_MetaTileEntity_ @Override public String[] getDescription() { if (CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK) { - String aPollution = "Causes " + getPollution() + " Pollution per second"; + int pollMin = mTier == 4 ? 250 : (mTier == 5 ? 500 : 750); + int pollMax = mTier == 4 ? 2000 : (mTier == 5 ? 4000 : 6000); + String aPollution = "Causes between "+pollMin+" and "+pollMax+ " Pollution per second"; return new String[]{ this.mDescription, - "Fuel Efficiency: " + this.getEfficiency() + "%", + "Fuel Efficiency: " + this.getEfficiency()*2 + "%", aPollution, CORE.GT_Tooltip}; } return new String[]{ this.mDescription, - "Fuel Efficiency: " + this.getEfficiency() + "%", + "Fuel Efficiency: " + this.getEfficiency()*2 + "%", CORE.GT_Tooltip}; } @@ -160,7 +162,7 @@ public abstract class GregtechRocketFuelGeneratorBase extends GT_MetaTileEntity_ @Override public long maxEUStore() { - return Math.max(this.getEUVar(), (V[this.mTier] * 80) + this.getMinimumStoredEU()); + return Math.max(this.getEUVar(), (V[this.mTier] * 500) + this.getMinimumStoredEU()); } @Override -- cgit