We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5ac277 commit 1892d1cCopy full SHA for 1892d1c
src/main/java/me/shedaniel/cimtb/CimtbWailaPlugin.java
@@ -49,7 +49,7 @@ public void appendBody(ITooltip tooltipTexts, IBlockAccessor accessor, IPluginCo
49
tooltipTexts.addLine(new TranslatableComponent("cimtb.harvestable.symbol." + harvestable).append(new TranslatableComponent("cimtb.harvestable").withStyle(ChatFormatting.GRAY)));
50
tooltipTexts.addLine(new TranslatableComponent("cimtb.effective_tool").withStyle(ChatFormatting.GRAY).append(handler.getToolDisplay()));
51
52
- if (level >= 0 && handler.toolType() == "pickaxes") {
+ if (level >= 0 && handler.toolType() != "shears" || level > 1) {
53
int[] textColor = {11184810};
54
String text = level + "";
55
if (I18n.exists("cimtb.harvest_level.level." + text)) {
0 commit comments