aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-24 16:13:16 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-24 16:13:16 +1000
commit160aeab1167363fc38cf348a8fe413ab829c8612 (patch)
treec4a1b0d996f43ac4b7c320ae3a86238f975451ed /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators
parent937e1374b6ffe7b005ae5e56538187a258675a81 (diff)
downloadGT5-Unofficial-160aeab1167363fc38cf348a8fe413ab829c8612.tar.gz
GT5-Unofficial-160aeab1167363fc38cf348a8fe413ab829c8612.tar.bz2
GT5-Unofficial-160aeab1167363fc38cf348a8fe413ab829c8612.zip
$ More tooltip fixes.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java
index 4ae2d99730..eabed23e23 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java
@@ -27,7 +27,7 @@ public class GT_MetaTileEntity_SemiFluidGenerator extends GT_MetaTileEntity_Dies
}
public int getPollution() {
- return (int) (2.0D * Math.pow(2.0D, this.mTier - 1));
+ return (int) (2.0D * Math.pow(2.0D, this.mTier));
}
public int getCapacity() {
@@ -49,7 +49,7 @@ public class GT_MetaTileEntity_SemiFluidGenerator extends GT_MetaTileEntity_Dies
@Override
public String[] getDescription() {
- return new String[]{this.mDescription, CORE.GT_Tooltip};
+ return new String[]{this.mDescription, "Produces "+(this.getPollution()*20)+" pollution/sec", "Fuel Efficiency: "+this.getEfficiency() + "%", CORE.GT_Tooltip};
}
}