From a6fce6eca80132823d941a7da620d7f67097229a Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 2 Jun 2023 12:54:34 +0200 Subject: Showing fished item names --- .../hannibal2/skyhanni/config/features/Fishing.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java index 58fa58a84..5f781fa54 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java @@ -120,6 +120,25 @@ public class Fishing { public Property hideOwn = Property.of(false); } + @Expose + @ConfigOption(name = "Fished Item Name", desc = "") + @Accordion + public FishedItemName fishedItemName = new FishedItemName(); + + public static class FishedItemName { + + @Expose + @ConfigOption(name = "Enabled", desc = "Show the fished item name above the item when fishing.") + @ConfigEditorBoolean + public boolean enabled = false; + + @Expose + @ConfigOption(name = "Show Bait", desc = "Also how the name of the consumed bait.") + @ConfigEditorBoolean + public boolean showBaits = false; + + } + @Expose @ConfigOption( name = "Shark Fish Counter", -- cgit