From 5db60e5167bf8f172f0aae41a4ee21c0c86705e3 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 16 Oct 2023 11:31:21 +0200 Subject: Fishing hook display no longer calculates distance, removed debug values, and added support for multiple timers without recasting the bobber. --- .../skyhanni/config/features/FishingConfig.java | 25 ---------------------- 1 file changed, 25 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java index edca0b432..b161f356a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java @@ -229,31 +229,6 @@ public class FishingConfig { @Expose public Position position = new Position(460, -240, 3.4f); - - @Expose - @ConfigOption( - name = "Debug: Update Interval", - desc = "Changes the time in ticks between updates (should be as high as possible). Default is 20" - ) - @ConfigEditorSlider( - minValue = 1, - maxValue = 80, - minStep = 1 - ) - public int debugUpdateInterval = 20; - - @Expose - @ConfigOption( - name = "Debug: Distance", - desc = "Changes the maximal detection distance between the fishing rod bobber and " + - "the armor stand that shows the hypixel timer (should be as low as possible). Default is 0.1" - ) - @ConfigEditorSlider( - minValue = 0.01f, - maxValue = 5f, - minStep = 0.01f - ) - public double debugMaxDistance = 0.1; } @Expose -- cgit