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/multi/MTEAssemblyLine.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/multi/MTEAssemblyLine.java')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/MTEAssemblyLine.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTEAssemblyLine.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTEAssemblyLine.java index 31224ce604..382400c3b1 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/MTEAssemblyLine.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTEAssemblyLine.java @@ -132,11 +132,9 @@ public class MTEAssemblyLine extends MTEExtendedPowerMultiBlockBase<MTEAssemblyL protected MultiblockTooltipBuilder createTooltip() { final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder(); tt.addMachineType("Assembling Line") - .addInfo("Controller block for the Assembling Line") .addInfo("Used to make complex machine parts (LuV+)") .addInfo("Does not make Assembler items") .addInfo("Recipe tier is at most Energy Hatch tier + 1.") - .addSeparator() .beginVariableStructureBlock(5, 16, 4, 4, 3, 3, false) // ? .addStructureInfo("From Bottom to Top, Left to Right") .addStructureInfo( @@ -153,7 +151,7 @@ public class MTEAssemblyLine extends MTEExtendedPowerMultiBlockBase<MTEAssemblyL .addInputHatch("Any layer 1 casing", 3) .addOutputBus("Replaces Input Bus on final slice or on any solid steel casing on layer 1", 4) .addOtherStructurePart("Data Access Hatch", "Optional, next to controller", 2) - .toolTipFinisher("Gregtech"); + .toolTipFinisher(); return tt; } |