From c01904870e61a4de4c3424787682e7bc214afa1d Mon Sep 17 00:00:00 2001 From: Cow Date: Tue, 6 Jul 2021 22:17:44 +0200 Subject: Added search-for-item functionality to Chest Tracker & Analyzer --- src/main/java/de/cowtipper/cowlection/command/MooCommand.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/java/de/cowtipper/cowlection/command') diff --git a/src/main/java/de/cowtipper/cowlection/command/MooCommand.java b/src/main/java/de/cowtipper/cowlection/command/MooCommand.java index 8bab5ee..396e6d1 100644 --- a/src/main/java/de/cowtipper/cowlection/command/MooCommand.java +++ b/src/main/java/de/cowtipper/cowlection/command/MooCommand.java @@ -696,6 +696,7 @@ public class MooCommand extends CommandBase { main.getChatHelper().sendMessage(new MooChatComponent("Enabled chest tracker! You can now...").green() .appendFreshSibling(new MooChatComponent(EnumChatFormatting.GREEN + " ❶ " + EnumChatFormatting.YELLOW + "add chests on your island by opening them; deselect chests by Sneaking + Right Click.").yellow()) .appendFreshSibling(new MooChatComponent(EnumChatFormatting.GREEN + " ❷ " + EnumChatFormatting.YELLOW + "use " + EnumChatFormatting.GOLD + analyzeCommand + EnumChatFormatting.YELLOW + " again to run the chest analysis.").yellow().setSuggestCommand(analyzeCommand)) + .appendFreshSibling(new MooChatComponent(" (You can search for an item inside your chests by double clicking its analysis row)").gray().setSuggestCommand(analyzeCommand)) .appendFreshSibling(new MooChatComponent(EnumChatFormatting.GREEN + " ❸ " + EnumChatFormatting.YELLOW + "use " + EnumChatFormatting.GOLD + analyzeCommand + " stop" + EnumChatFormatting.YELLOW + " to stop the chest tracker and clear current results.").yellow().setSuggestCommand(analyzeCommand + " stop"))); } else { main.getChatHelper().sendMessage(new MooChatComponent("Enabled chest tracker! " + EnumChatFormatting.GRAY + "Run " + analyzeCommand + " again to run the chest analysis.").green().setSuggestCommand(analyzeCommand)); -- cgit