diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-27 23:38:53 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-27 23:38:53 +0100 |
commit | ed60244b647171ef449e3d7336d15830d851fc4a (patch) | |
tree | 118ca5fcec963fd6cc23ce6a36182429e7b586bd /src/main/java/at/hannibal2 | |
parent | c24d972d76156c93b5b373a062d12b06faa8ab15 (diff) | |
download | skyhanni-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/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenWarpCommands.kt | 2 |
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") |