Skip to content

Commit afc099f

Browse files
committed
make omni-breaker description tooltips gray
1 parent 0b9ba25 commit afc099f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/net/neganote/gtutilities/common/item/OmniBreakerItem.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ public void appendHoverText(@NotNull ItemStack stack, @Nullable Level level,
8484
tooltipComponents.add(Component.translatable("tooltip.omnibreaker.charge_status",
8585
Component.translatable(FormattingUtil.formatNumbers(charge)).withStyle(ChatFormatting.GREEN),
8686
Component.translatable(FormattingUtil.formatNumbers(maxCharge)).withStyle(ChatFormatting.YELLOW)));
87-
tooltipComponents.add(Component.translatable("tooltip.omnibreaker.can_break_anything"));
88-
tooltipComponents.add(Component.translatable("tooltip.omnibreaker.right_click_function"));
87+
tooltipComponents
88+
.add(Component.translatable("tooltip.omnibreaker.can_break_anything").withStyle(ChatFormatting.GRAY));
89+
tooltipComponents
90+
.add(Component.translatable("tooltip.omnibreaker.right_click_function").withStyle(ChatFormatting.GRAY));
8991
super.appendHoverText(stack, level, tooltipComponents, isAdvanced);
9092
}
9193
}

0 commit comments

Comments
 (0)