diff options
author | appable <enzospiacitelli@gmail.com> | 2023-07-27 02:31:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 11:31:02 +0200 |
commit | 8c317b7b1905cb886fd3af50caa0d3b3149d1d86 (patch) | |
tree | ae8b9277a846f1a26bb58fc47dcf489b16ad7a35 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | b01b49fd741d4d87b3ced3503e93408e26af18e5 (diff) | |
download | skyhanni-8c317b7b1905cb886fd3af50caa0d3b3149d1d86.tar.gz skyhanni-8c317b7b1905cb886fd3af50caa0d3b3149d1d86.tar.bz2 skyhanni-8c317b7b1905cb886fd3af50caa0d3b3149d1d86.zip |
Merge pull request #337
* trophy fillet tooltip; trophy info tooltip in chat
* add new config options for trophy
* fix up some settings
* Merge remote-tracking branch 'upstream/beta' into trophy-data
* using TrophyFishJson to load repo data
* fixed missing separators for total number
* fixed trophy fish sack display
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java | 12 |
1 files changed, 12 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 e7fcff1ff..2374a9e2f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java @@ -44,6 +44,12 @@ public class Fishing { public boolean trophyFishTotalAmount = false; @Expose + @ConfigOption(name = "Trophy Fish Info", desc = "Show information and stats about a trophy fish when hovering over a catch message in chat.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean trophyFishTooltip = true; + + @Expose @ConfigOption(name = "Bronze Duplicates", desc = "Hide duplicate messages for bronze trophy fishes from chat.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) @@ -56,6 +62,12 @@ public class Fishing { public boolean trophyFishSilverHider = false; @Expose + @ConfigOption(name = "Fillet Tooltip", desc = "Show fillet value of trophy fish in tooltip.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean trophyFilletTooltip = true; + + @Expose @ConfigOption(name = "Odger Waypoint", desc = "Show the Odger waypoint when trophy fishes are in the inventory and no lava rod in hand.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) |