Skip to content

Commit

Permalink
fix: don't show "click to submit" tooltip on tasks by default
Browse files Browse the repository at this point in the history
Only item tasks need this, and there's already support in ItemTask for this.
Was showing for fluid tasks, which is misleading.
  • Loading branch information
desht committed Jun 21, 2024
1 parent 9c4be10 commit 1457b9a
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,6 @@ public void addMouseOverHeader(TooltipList list, TeamData teamData, boolean adva
*/
@Environment(EnvType.CLIENT)
public void addMouseOverText(TooltipList list, TeamData teamData) {
if (consumesResources()) {
list.blankLine();
list.add(Component.translatable("ftbquests.task.click_to_submit").withStyle(ChatFormatting.YELLOW, ChatFormatting.UNDERLINE));
}
}

@Environment(EnvType.CLIENT)
Expand Down

0 comments on commit 1457b9a

Please sign in to comment.