From ed60244b647171ef449e3d7336d15830d851fc4a Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 27 Nov 2023 23:38:53 +0100 Subject: Fixed /tp not working with uppercase characters. --- .../java/at/hannibal2/skyhanni/features/garden/GardenWarpCommands.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2') 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") -- cgit