diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-02 12:54:34 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-02 12:54:34 +0200 |
commit | a6fce6eca80132823d941a7da620d7f67097229a (patch) | |
tree | dfcc61ded82a4e9f83190368bcdbc7fecbfe1480 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 746c82be7379eeea2208e1d82d4e375826ebdd1c (diff) | |
download | skyhanni-a6fce6eca80132823d941a7da620d7f67097229a.tar.gz skyhanni-a6fce6eca80132823d941a7da620d7f67097229a.tar.bz2 skyhanni-a6fce6eca80132823d941a7da620d7f67097229a.zip |
Showing fished item names
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java | 19 |
1 files changed, 19 insertions, 0 deletions
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 @@ -121,6 +121,25 @@ public class Fishing { } @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", desc = "Counts how many sharks have been caught." |