aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod
diff options
context:
space:
mode:
authorMaxim <maxim235@gmx.de>2022-09-24 19:33:57 +0200
committerGitHub <noreply@github.com>2022-09-24 19:33:57 +0200
commit2f7e433ac2914e9876bd5d4fac955a5b73245ac6 (patch)
treea2fd0826a122229e6bc99af46ebbad5004a860c6 /src/main/java/gtPlusPlus/xmod
parentf0a81c3493f4792ef2509cd69cf924448b9105d5 (diff)
downloadGT5-Unofficial-2f7e433ac2914e9876bd5d4fac955a5b73245ac6.tar.gz
GT5-Unofficial-2f7e433ac2914e9876bd5d4fac955a5b73245ac6.tar.bz2
GT5-Unofficial-2f7e433ac2914e9876bd5d4fac955a5b73245ac6.zip
Removed wrong local var init (#367)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java
index fe7ffee685..3c3b2840ed 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/generators/GregtechRocketFuelGeneratorBase.java
@@ -31,18 +31,18 @@ public abstract class GregtechRocketFuelGeneratorBase extends GT_MetaTileEntity_
final String aDescription,
final ITexture... aTextures) {
super(aID, aName, aNameRegional, aTier, 3, aDescription, aTextures);
- int pollMin = (int) (CORE.ConfigSwitches.baseMinPollutionPerSecondRocketFuelGenerator
+ pollMin = (int) (CORE.ConfigSwitches.baseMinPollutionPerSecondRocketFuelGenerator
* CORE.ConfigSwitches.pollutionReleasedByTierRocketFuelGenerator[mTier]);
- int pollMax = (int) (CORE.ConfigSwitches.baseMaxPollutionPerSecondRocketFuelGenerator
+ pollMax = (int) (CORE.ConfigSwitches.baseMaxPollutionPerSecondRocketFuelGenerator
* CORE.ConfigSwitches.pollutionReleasedByTierRocketFuelGenerator[mTier]);
}
public GregtechRocketFuelGeneratorBase(
final String aName, final int aTier, final String aDescription, final ITexture[][][] aTextures) {
super(aName, aTier, 3, aDescription, aTextures);
- int pollMin = (int) (CORE.ConfigSwitches.baseMinPollutionPerSecondRocketFuelGenerator
+ pollMin = (int) (CORE.ConfigSwitches.baseMinPollutionPerSecondRocketFuelGenerator
* CORE.ConfigSwitches.pollutionReleasedByTierRocketFuelGenerator[mTier]);
- int pollMax = (int) (CORE.ConfigSwitches.baseMaxPollutionPerSecondRocketFuelGenerator
+ pollMax = (int) (CORE.ConfigSwitches.baseMaxPollutionPerSecondRocketFuelGenerator
* CORE.ConfigSwitches.pollutionReleasedByTierRocketFuelGenerator[mTier]);
}