diff options
author | GlodBlock <60341015+GlodBlock@users.noreply.github.com> | 2021-11-16 12:53:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 12:53:43 +0800 |
commit | 5393dd9d54fd7b7b10030473942d578cac118d46 (patch) | |
tree | 7fe5290bd7973b47a7eacbc3f8dcfbef74e3d25f /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines | |
parent | d09fecc77ed50c1df1988d06dc97069887ccff1c (diff) | |
parent | ec98da4ac00f8b3b0eafaec04474df2b6d868e1f (diff) | |
download | GT5-Unofficial-5393dd9d54fd7b7b10030473942d578cac118d46.tar.gz GT5-Unofficial-5393dd9d54fd7b7b10030473942d578cac118d46.tar.bz2 GT5-Unofficial-5393dd9d54fd7b7b10030473942d578cac118d46.zip |
Merge branch 'master' into structurelib-interation
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java index cea1ccbcef..c26633805e 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java @@ -92,6 +92,7 @@ public class GregtechMetaTileEntity_LargeRocketEngine extends GregtechMeta_Multi if (mCoolantName.toLowerCase().contains(".")) { mCoolantName = FluidUtils.getFluidStack("liquidhydrogen", 1).getLocalizedName(); } + GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder(); tt.addMachineType(getMachineType()) .addInfo("Controller Block for the Large Rocket Engine") @@ -99,7 +100,7 @@ public class GregtechMetaTileEntity_LargeRocketEngine extends GregtechMeta_Multi .addInfo("Supply 4L of " + mCoolantName + " per second per 2100 eu/t to boost output (optional)") .addInfo("Consumes 2000L/s of air per 16384 eu/t produced") .addInfo("Produces as much energy as you put fuel in") - .addInfo("produses 1500 posution/S per 16384 eu/t produced") + .addInfo("Produces 1500 pollution/S per 16384 eu/t produced") .addInfo("When producing more then 32K eu/t fuel wil be consume less efficiently (3x - 1.5x eff@57Keu/t input energy)") .addInfo("formula: x = input of energy (10K^(1/3)/ x^(1/3)) * (40K^(1/3)/ x^(1/3))") .addInfo("Boosting will produce 3x the amount of power but will consume 3x fuel") |