Skip to content

Commit cec4b75

Browse files
authored
Extra tooltips for machines (#2680)
1 parent eb9230e commit cec4b75

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/main/java/gregtech/common/metatileentities/electric/MetaTileEntityBatteryBuffer.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ public void addInformation(ItemStack stack, @Nullable World player, List<String>
175175
public void addToolUsages(ItemStack stack, @Nullable World world, List<String> tooltip, boolean advanced) {
176176
tooltip.add(I18n.format("gregtech.tool_action.screwdriver.access_covers"));
177177
tooltip.add(I18n.format("gregtech.tool_action.wrench.set_facing"));
178+
tooltip.add(I18n.format("gregtech.tool_action.soft_mallet.reset"));
178179
super.addToolUsages(stack, world, tooltip, advanced);
179180
}
180181

src/main/java/gregtech/common/metatileentities/multi/multiblockpart/MetaTileEntityMachineHatch.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ private int getMachineLimit() {
9797
public void addInformation(ItemStack stack, @Nullable World player, List<String> tooltip, boolean advanced) {
9898
super.addInformation(stack, player, tooltip, advanced);
9999
tooltip.add(I18n.format("gregtech.machine.machine_hatch.processing_array"));
100+
tooltip.add(I18n.format("gregtech.universal.disabled"));
100101
}
101102

102103
@Override

0 commit comments

Comments
 (0)