From e8212f12c77e4d77002cd4ccadb8056c25ae6cb6 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 16 Feb 2024 08:06:54 +0100 Subject: Fixed /warp is command replace feature. --- .../java/at/hannibal2/skyhanni/features/commands/WarpIsCommand.kt | 3 ++- src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt | 4 ++++ src/main/java/at/hannibal2/skyhanni/utils/LorenzUtils.kt | 5 ++++- 3 files changed, 10 insertions(+), 2 deletions(-) (limited to 'src/main') diff --git a/src/main/java/at/hannibal2/skyhanni/features/commands/WarpIsCommand.kt b/src/main/java/at/hannibal2/skyhanni/features/commands/WarpIsCommand.kt index 183238762..09dad822c 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/commands/WarpIsCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/commands/WarpIsCommand.kt @@ -2,6 +2,7 @@ package at.hannibal2.skyhanni.features.commands import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.events.MessageSendToServerEvent +import at.hannibal2.skyhanni.utils.ChatUtils import at.hannibal2.skyhanni.utils.LorenzUtils import net.minecraftforge.fml.common.eventhandler.SubscribeEvent @@ -14,7 +15,7 @@ class WarpIsCommand { if (event.message.lowercase() == "/warp is") { event.isCanceled = true - LorenzUtils.sendCommandToServer("/is") + ChatUtils.sendCommandToServer("is") } } } diff --git a/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt b/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt index 34f42e629..f8a156644 100644 --- a/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt +++ b/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt @@ -200,4 +200,8 @@ object ChatUtils { fun sendMessageToServer(message: String) { sendQueue.add(message) } + + fun sendCommandToServer(command: String) { + sendMessageToServer("/$command") + } } diff --git a/src/main/java/at/hannibal2/skyhanni/utils/LorenzUtils.kt b/src/main/java/at/hannibal2/skyhanni/utils/LorenzUtils.kt index eafcc3fef..27b6a1d9d 100644 --- a/src/main/java/at/hannibal2/skyhanni/utils/LorenzUtils.kt +++ b/src/main/java/at/hannibal2/skyhanni/utils/LorenzUtils.kt @@ -331,7 +331,10 @@ object LorenzUtils { } fun sendCommandToServer(command: String) { - ChatUtils.sendMessageToServer("/$command") + if (command.startsWith("/")) { + ChatUtils.debug("Sending wrong command to server? ($command)") + } + ChatUtils.sendCommandToServer(command) } /** -- cgit