From e9c51ac3a9d61cf9c5616c476cbbb8dcb7cba87c Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 23 Sep 2023 11:02:23 +0200 Subject: removed debug and fixed typo --- src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 2 +- .../java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index da816457e..f2176badc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -354,7 +354,7 @@ public class MiscConfig { public boolean acceptQuest = false; @Expose - @ConfigOption(name = "Trapper Hotkey", desc = "Press this key to warp to Trevor's Den and to accept the quest." + + @ConfigOption(name = "Trapper Hotkey", desc = "Press this key to warp to Trevor's Den or to accept the quest. " + "§eRequires the relevant above settings to be toggled") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) public int keyBindWarpTrapper = Keyboard.KEY_NONE; diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt index 53f3d2482..52bb0f392 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt @@ -29,7 +29,6 @@ object TrevorTracker { val storage = ProfileStorageData.profileSpecific?.trapperData ?: return val difference = storage.peltsGained - lastPelts lastPelts = storage.peltsGained - println("last: $lastPelts stopped: $stoppedChecks difference: $difference length: ${peltsPerSecond.size}") if (difference == storage.peltsGained) return -- cgit