diff options
author | martimavocado <39881008+martimavocado@users.noreply.github.com> | 2024-02-09 21:57:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 22:57:05 +0100 |
commit | d134fece41b7cfe4d8ff1c9176ff0e7f8a05420f (patch) | |
tree | ab91741347a4082f2942aaae80ae6641475d39c0 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | fc7a9d08b4d4e6fd1a089a58d789efc818a22430 (diff) | |
download | skyhanni-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.kt | 5 |
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) } |