From 335ead47ecd46692cb4de5268846835cb104b101 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 17 Jan 2023 22:18:08 +0100 Subject: Added alert sound to barn fishing timer. --- src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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 e3be3fc00..958fe0b2e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java @@ -58,4 +58,13 @@ public class Fishing { @ConfigOption(name = "Fishing Timer Location", desc = "") @ConfigEditorButton(runnableId = "barnTimer", buttonText = "Edit") public Position barnTimerPos = new Position(10, 10, false, true); + + @Expose + @ConfigOption(name = "Fishing Timer Alert", desc = "Change the amount of time in seconds until the timer dings.") + @ConfigEditorSlider( + minValue = 240, + maxValue = 360, + minStep = 10 + ) + public int barnTimerAlertTime = 330; } \ No newline at end of file -- cgit