diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 19:38:08 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-03 19:38:08 +0200 |
commit | 0ec5e4a3df55c2ce436a11ab95c602feadc8adbf (patch) | |
tree | df71ce9032c5857e0ab5eb1fe21ae1cc6cfa2b0d /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 559cceb47fb24eb7b7ed0a28174c483570f9792a (diff) | |
download | skyhanni-0ec5e4a3df55c2ce436a11ab95c602feadc8adbf.tar.gz skyhanni-0ec5e4a3df55c2ce436a11ab95c602feadc8adbf.tar.bz2 skyhanni-0ec5e4a3df55c2ce436a11ab95c602feadc8adbf.zip |
Show the barn fishing timer even for worms or other sea creatures in the crystal hollows.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java | 18 |
1 files changed, 17 insertions, 1 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 2374a9e2f..8ff337693 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java @@ -2,7 +2,14 @@ package at.hannibal2.skyhanni.config.features; import at.hannibal2.skyhanni.config.core.config.Position; import com.google.gson.annotations.Expose; -import io.github.moulberry.moulconfig.annotations.*; +import io.github.moulberry.moulconfig.annotations.Accordion; +import io.github.moulberry.moulconfig.annotations.ConfigAccordionId; +import io.github.moulberry.moulconfig.annotations.ConfigEditorAccordion; +import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean; +import io.github.moulberry.moulconfig.annotations.ConfigEditorColour; +import io.github.moulberry.moulconfig.annotations.ConfigEditorDropdown; +import io.github.moulberry.moulconfig.annotations.ConfigEditorSlider; +import io.github.moulberry.moulconfig.annotations.ConfigOption; import io.github.moulberry.moulconfig.observer.Property; public class Fishing { @@ -106,6 +113,15 @@ public class Fishing { public Position barnTimerPos = new Position(10, 10, false, true); @Expose + @ConfigOption( + name = "Worm Fishing", + desc = "Show the barn fishing timer even for worms or other sea creatures in the crystal hollows." + ) + @ConfigEditorBoolean + @ConfigAccordionId(id = 2) + public boolean barnTimerCrystalHollows = true; + + @Expose @ConfigOption(name = "Fishing Timer Alert", desc = "Change the amount of time in seconds until the timer dings.") @ConfigEditorSlider( minValue = 240, |