From e6c8d35894d561e6aea1cfb7450f00a70c9e01d8 Mon Sep 17 00:00:00 2001 From: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Date: Mon, 14 Oct 2024 14:46:59 +0200 Subject: Multi ToolTip unification (#3343) Co-authored-by: chochem <40274384+chochem@users.noreply.github.com> Co-authored-by: GDCloud Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Martin Robertz --- .../common/tileentities/machines/multi/MTELargeTurbineHPSteam.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineHPSteam.java') diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineHPSteam.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineHPSteam.java index 6b9f555b34..731d6daeb9 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineHPSteam.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineHPSteam.java @@ -59,12 +59,10 @@ public class MTELargeTurbineHPSteam extends MTELargeTurbine { protected MultiblockTooltipBuilder createTooltip() { final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder(); tt.addMachineType("Steam Turbine") - .addInfo("Controller block for the Large High Pressure Steam Turbine") .addInfo("Needs a Turbine, place inside controller") .addInfo("Outputs Steam as well as producing power") .addInfo("Power output depends on turbine and fitting") .addInfo("Use screwdriver to adjust fitting of turbine") - .addSeparator() .beginStructureBlock(3, 3, 4, true) .addController("Front center") .addCasingInfoRange("Titanium Turbine Casing", 8, 31, false) @@ -72,7 +70,7 @@ public class MTELargeTurbineHPSteam extends MTELargeTurbine { .addMaintenanceHatch("Side centered", 2) .addInputHatch("Superheated Steam, Side centered", 2) .addOutputHatch("Steam, Side centered", 2) - .toolTipFinisher("Gregtech"); + .toolTipFinisher(); return tt; } -- cgit