diff options
author | Martin Robertz <dream-master@gmx.net> | 2023-03-19 12:09:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 12:09:50 +0100 |
commit | fb2500045d1baa1ec5686b139efab560e23f97a1 (patch) | |
tree | 0cfefa5e6221762c586b89c7561f597c4e2e6765 /src/main/java/common/tileentities | |
parent | 632f91dd0dc2efd67a2081d5d2ea2310634e600f (diff) | |
parent | d5cb21017098a6ee5294b8eecf4a57d5df1cb611 (diff) | |
download | GT5-Unofficial-fb2500045d1baa1ec5686b139efab560e23f97a1.tar.gz GT5-Unofficial-fb2500045d1baa1ec5686b139efab560e23f97a1.tar.bz2 GT5-Unofficial-fb2500045d1baa1ec5686b139efab560e23f97a1.zip |
Merge pull request #61 from the-emerald/patch-1
Fix space in gas turbine tooltip
Diffstat (limited to 'src/main/java/common/tileentities')
-rw-r--r-- | src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java | 2 | ||||
-rw-r--r-- | src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java index a915f07287..888f2c71e6 100644 --- a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java +++ b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java @@ -81,7 +81,7 @@ public class GTMTE_SOFuelCellMK1 extends GT_MetaTileEntity_EnhancedMultiBlockBas tt.addMachineType("Gas Turbine") .addInfo("Oxidizes gas fuels to generate electricity without polluting the environment") .addInfo( - "Consumes up to" + (EU_PER_TICK * 20) + "Consumes up to " + GT_Utility.formatNumbers(EU_PER_TICK * 20) + "EU worth of fuel with up to 100% efficiency each second") .addInfo("Steam production requires the SOFC to heat up completely first") .addInfo("Outputs " + EU_PER_TICK + "EU/t and " + STEAM_PER_SEC + "L/s Steam") diff --git a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java index 8c1aee14ef..56986228ae 100644 --- a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java +++ b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java @@ -83,7 +83,7 @@ public class GTMTE_SOFuelCellMK2 extends GT_MetaTileEntity_EnhancedMultiBlockBas tt.addMachineType("Gas Turbine") .addInfo("Oxidizes gas fuels to generate electricity without polluting the environment") .addInfo( - "Consumes up to" + (EU_PER_TICK * 20) + "Consumes up to " + GT_Utility.formatNumbers(EU_PER_TICK * 20) + "EU worth of fuel with up to 100% efficiency each second") .addInfo("Nitrobenzene and other gas fuels above 1M EU/bucket are more efficient") .addInfo("Steam production requires the SOFC to heat up completely first") |