diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-10-14 14:46:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-14 12:46:59 +0000 |
commit | e6c8d35894d561e6aea1cfb7450f00a70c9e01d8 (patch) | |
tree | 700dec83ddcd7f7b9b8f0b90cad30cc2cb33b38f /src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java | |
parent | d3a4a52483aa8b069925dc55fd680f965b59f133 (diff) | |
download | GT5-Unofficial-e6c8d35894d561e6aea1cfb7450f00a70c9e01d8.tar.gz GT5-Unofficial-e6c8d35894d561e6aea1cfb7450f00a70c9e01d8.tar.bz2 GT5-Unofficial-e6c8d35894d561e6aea1cfb7450f00a70c9e01d8.zip |
Multi ToolTip unification (#3343)
Co-authored-by: chochem <40274384+chochem@users.noreply.github.com>
Co-authored-by: GDCloud <gdcloudstrike@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java')
-rw-r--r-- | src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java b/src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java index abf5b9af39..b7dd5b5652 100644 --- a/src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java +++ b/src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java @@ -99,7 +99,6 @@ public class MTESOFuelCellMK2 extends MTEEnhancedMultiBlockBase<MTESOFuelCellMK2 .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") .addInfo("Additionally, requires " + OXYGEN_PER_SEC + "L/s Oxygen gas") - .addSeparator() .beginStructureBlock(3, 3, 5, false) .addController("Front center") .addCasingInfoMin("Robust Tungstensteel Machine Casing", 12, false) @@ -110,7 +109,7 @@ public class MTESOFuelCellMK2 extends MTEEnhancedMultiBlockBase<MTESOFuelCellMK2 .addInputHatch("Fuel, any casing") .addInputHatch("Oxygen, any casing") .addOutputHatch("Superheated Steam, any casing") - .toolTipFinisher("KekzTech"); + .toolTipFinisher(); return tt; } |