Skip to content

Commit

Permalink
Modded over vanilla
Browse files Browse the repository at this point in the history
  • Loading branch information
Julienraptor01 committed Apr 15, 2022
1 parent e5ac277 commit 1892d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/me/shedaniel/cimtb/CimtbWailaPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void appendBody(ITooltip tooltipTexts, IBlockAccessor accessor, IPluginCo
tooltipTexts.addLine(new TranslatableComponent("cimtb.harvestable.symbol." + harvestable).append(new TranslatableComponent("cimtb.harvestable").withStyle(ChatFormatting.GRAY)));
tooltipTexts.addLine(new TranslatableComponent("cimtb.effective_tool").withStyle(ChatFormatting.GRAY).append(handler.getToolDisplay()));

if (level >= 0 && handler.toolType() == "pickaxes") {
if (level >= 0 && handler.toolType() != "shears" || level > 1) {
int[] textColor = {11184810};
String text = level + "";
if (I18n.exists("cimtb.harvest_level.level." + text)) {
Expand Down

0 comments on commit 1892d1c

Please sign in to comment.