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/gregtech/common/tileentities/machines/multiblock/DistillationTower.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/gregtech/common/tileentities/machines/multiblock/DistillationTower.java')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java b/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java index e3a97cfebc..438ab34533 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java +++ b/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java @@ -48,13 +48,10 @@ public class DistillationTower extends StackableController<DistillationTower, Di public MultiblockTooltipBuilder createTooltip() { final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder(); tt.addMachineType("Distillation Tower") - .addInfo("Controller block for the Distillation Tower") .addInfo("Can be specialised to be a mega structure") - .addInfo(GTValues.Authorminecraft7771) - .addSeparator() .beginStructureBlock(5, 3, 3, false) .addController("Front center") - .toolTipFinisher("Gregtech"); + .toolTipFinisher(GTValues.Authorminecraft7771); return tt; } |