aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authormartimavocado <39881008+martimavocado@users.noreply.github.com>2024-02-09 21:57:05 +0000
committerGitHub <noreply@github.com>2024-02-09 22:57:05 +0100
commitd134fece41b7cfe4d8ff1c9176ff0e7f8a05420f (patch)
treeab91741347a4082f2942aaae80ae6641475d39c0 /src/main/java/at/hannibal2/skyhanni/config/commands
parentfc7a9d08b4d4e6fd1a089a58d789efc818a22430 (diff)
downloadskyhanni-d134fece41b7cfe4d8ff1c9176ff0e7f8a05420f.tar.gz
skyhanni-d134fece41b7cfe4d8ff1c9176ff0e7f8a05420f.tar.bz2
skyhanni-d134fece41b7cfe4d8ff1c9176ff0e7f8a05420f.zip
Added Sensitivity Reducer. #716
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index 69b096b31..771bf7055 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -29,6 +29,7 @@ import at.hannibal2.skyhanni.features.garden.GardenAPI
import at.hannibal2.skyhanni.features.garden.GardenCropTimeCommand
import at.hannibal2.skyhanni.features.garden.GardenCropsInCommand
import at.hannibal2.skyhanni.features.garden.GardenNextJacobContest
+import at.hannibal2.skyhanni.features.garden.SensitivityReducer
import at.hannibal2.skyhanni.features.garden.composter.ComposterOverlay
import at.hannibal2.skyhanni.features.garden.farming.ArmorDropTracker
import at.hannibal2.skyhanni.features.garden.farming.CropMoneyDisplay
@@ -217,6 +218,10 @@ object Commands {
"Lock/Unlock the mouse so it will no longer rotate the player (for farming)"
) { LockMouseLook.toggleLock() }
registerCommand(
+ "shsensreduce",
+ "Lowers the mouse sensitivity for easier small adjustments (for farming)"
+ ) { SensitivityReducer.manualToggle() }
+ registerCommand(
"shresetvermintracker",
"Resets the Vermin Tracker"
) { VerminTracker.resetCommand(it) }