aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-27 23:38:53 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-27 23:38:53 +0100
commited60244b647171ef449e3d7336d15830d851fc4a (patch)
tree118ca5fcec963fd6cc23ce6a36182429e7b586bd /src/main/java
parentc24d972d76156c93b5b373a062d12b06faa8ab15 (diff)
downloadskyhanni-ed60244b647171ef449e3d7336d15830d851fc4a.tar.gz
skyhanni-ed60244b647171ef449e3d7336d15830d851fc4a.tar.bz2
skyhanni-ed60244b647171ef449e3d7336d15830d851fc4a.zip
Fixed /tp <plot name> not working with uppercase characters.
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/GardenWarpCommands.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenWarpCommands.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenWarpCommands.kt
index b163ec757..a25949350 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenWarpCommands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenWarpCommands.kt
@@ -34,7 +34,7 @@ class GardenWarpCommands {
LockMouseLook.autoDisable()
}
- tpPlotPattern.matchMatcher(message) {
+ tpPlotPattern.matchMatcher(event.message) {
event.isCanceled = true
val plotName = group("plot")
LorenzUtils.sendCommandToServer("tptoplot $plotName")