diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-12 16:36:28 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-12 16:36:28 +0200 |
commit | 3f91a19a477843d3aac971ae67c3a2c0c26780c0 (patch) | |
tree | 8c577a72927ee3d5e23eb38048d47d19cc47803d /src/main/java/at/hannibal2/skyhanni/features/misc | |
parent | 32ad18bae4e0f200a7e3a94a55c89edb4d1f6f7b (diff) | |
download | skyhanni-3f91a19a477843d3aac971ae67c3a2c0c26780c0.tar.gz skyhanni-3f91a19a477843d3aac971ae67c3a2c0c26780c0.tar.bz2 skyhanni-3f91a19a477843d3aac971ae67c3a2c0c26780c0.zip |
Changed Warp to Trapper Hotkey to only work while in the Farming Islands
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt index 7280ae4bf..9a2209ab3 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorFeatures.kt @@ -196,6 +196,7 @@ class TrevorFeatures { @SubscribeEvent fun onTick(event: TickEvent.ClientTickEvent) { if (!config.warpToTrapper) return + if (!onFarmingIsland()) return if (!Keyboard.getEventKeyState()) return val key = if (Keyboard.getEventKey() == 0) Keyboard.getEventCharacter().code + 256 else Keyboard.getEventKey() if (config.keyBindWarpTrapper != key) return |