diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 16:39:02 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 16:39:02 +0100 |
commit | 14f789dece55b7747109bf0d372d3a9606c37018 (patch) | |
tree | 552d7a116e451f8ba8d269bace0cbc7d59fe343c /src/main/java/at/hannibal2/skyhanni | |
parent | 0356b4fad9c935f62dd15427c2f0218d2d267dc1 (diff) | |
download | skyhanni-14f789dece55b7747109bf0d372d3a9606c37018.tar.gz skyhanni-14f789dece55b7747109bf0d372d3a9606c37018.tar.bz2 skyhanni-14f789dece55b7747109bf0d372d3a9606c37018.zip |
disabled mouse lock on pest spawn warp
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestSpawn.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestSpawn.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestSpawn.kt index 82c43e320..ae90e4439 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestSpawn.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestSpawn.kt @@ -4,6 +4,7 @@ import at.hannibal2.skyhanni.events.LorenzChatEvent import at.hannibal2.skyhanni.events.LorenzKeyPressEvent import at.hannibal2.skyhanni.events.garden.pests.PestSpawnEvent import at.hannibal2.skyhanni.features.garden.GardenAPI +import at.hannibal2.skyhanni.features.misc.LockMouseLook import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.NEUItems import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher @@ -72,6 +73,7 @@ class PestSpawn { lastPlotTp?.let { lastPlotTp = null LorenzUtils.sendCommandToServer("tptoplot $it") + LockMouseLook.autoDisable() } } } |