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/drone | |
| 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/drone')
| -rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/drone/MTEDroneCentre.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/drone/MTEDroneCentre.java b/src/main/java/gregtech/common/tileentities/machines/multi/drone/MTEDroneCentre.java index f84e2a7af0..4e75ffba5f 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/drone/MTEDroneCentre.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/drone/MTEDroneCentre.java @@ -177,7 +177,6 @@ public class MTEDroneCentre extends MTEExtendedPowerMultiBlockBase<MTEDroneCentr protected MultiblockTooltipBuilder createTooltip() { MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder(); tt.addMachineType("Drone Centre") - .addInfo("Drone Center Controller") .addInfo(EnumChatFormatting.AQUA + "Drone #10032, cleared for takeoff!") .addInfo("Monitors multiblock machines in range.") .addInfo("Replace maintenance hatch on other multi with drone downlink module.") @@ -188,8 +187,6 @@ public class MTEDroneCentre extends MTEExtendedPowerMultiBlockBase<MTEDroneCentr .addInfo("There is a chance per second that the drone will crash.") .addInfo("Chance is determined by drone tier: T1-1/28800, T2-1/172800, T3-0") .addInfo("If machine is too far, remote control would not available") - .addInfo(AuthorSilverMoon) - .addSeparator() .beginStructureBlock(5, 4, 9, false) .addController("Front center") .addCasingInfoRange("Stable Titanium Machine Casing", CASINGS_MIN, 91, false) @@ -198,8 +195,7 @@ public class MTEDroneCentre extends MTEExtendedPowerMultiBlockBase<MTEDroneCentr .addCasingInfoExactly("Any tiered glass", 6, false) .addInputBus("Any Titanium Casing", 1) .addStructureInfo("No maintenance hatch needed") - .addSeparator() - .toolTipFinisher("Gregtech"); + .toolTipFinisher(AuthorSilverMoon); return tt; } |
