diff options
author | Obsidian <108832807+Obsidianninja11@users.noreply.github.com> | 2024-03-23 15:57:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-24 00:57:58 +0100 |
commit | 74af9cc72578129294bbc5071621da7b9dd4cdf6 (patch) | |
tree | 48b6290c428103993fe34c22fe59273d7fc7a509 /src/main/java/at/hannibal2/skyhanni/features | |
parent | 68db886580ba88066aac566328153f30124cb2f1 (diff) | |
download | skyhanni-74af9cc72578129294bbc5071621da7b9dd4cdf6.tar.gz skyhanni-74af9cc72578129294bbc5071621da7b9dd4cdf6.tar.bz2 skyhanni-74af9cc72578129294bbc5071621da7b9dd4cdf6.zip |
Improvement: Allow teleporting when in an infested plot (#1140)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt index 2833cc4ed..9b1a73a05 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt @@ -143,7 +143,7 @@ class PestFinder { return } - if (plot.isPlayerInside()) { + if (plot.isPlayerInside() && !config.alwaysTp) { ChatUtils.userError("You're already in an infested plot!") return } |