diff --git a/src/main/java/me/zeroeightsix/kami/module/modules/chat/AutoReply.java b/src/main/java/me/zeroeightsix/kami/module/modules/chat/AutoReply.java index 2e447c2b1..e5ca7c582 100644 --- a/src/main/java/me/zeroeightsix/kami/module/modules/chat/AutoReply.java +++ b/src/main/java/me/zeroeightsix/kami/module/modules/chat/AutoReply.java @@ -17,7 +17,7 @@ import me.zeroeightsix.kami.module.Module; @Module.Info(name = "AutoReply", description = "Automatically replies to messages", category = Module.Category.CHAT) public class AutoReply extends Module { public Setting customMessage = register(Settings.b("Custom Message", false)); - public Setting message = register(Settings.stringBuilder("Custom Text").withValue("Use &7" + Command.getCommandPrefix() + "&rautoreply to modify this").withConsumer((old, value) -> {}).withVisibility(v -> customMessage.getValue()).build()); + public Setting message = register(Settings.stringBuilder("Custom Text").withValue("Use &7" + Command.getCommandPrefix() + "autoreply&r to modify this").withConsumer((old, value) -> {}).withVisibility(v -> customMessage.getValue()).build()); public Setting customListener = register(Settings.b("Custom Listener", false)); public Setting listener = register(Settings.stringBuilder("Custom Listener Name").withValue("unchanged").withConsumer((old, value) -> {}).withVisibility(v -> customListener.getValue()).build()); public Setting customReplyCommand = register(Settings.b("Custom Reply Command", false)); @@ -53,10 +53,10 @@ public class AutoReply extends Module { if (startTime == 0) startTime = System.currentTimeMillis(); if (startTime + 5000 <= System.currentTimeMillis()) { // 5 seconds in milliseconds if (customListener.getValue() && listener.getValue().equalsIgnoreCase("unchanged") && mc.player != null) { - Command.sendWarningMessage(this.getChatName() + " Warning: In order to use the custom listener, please run the &7" + Command.getCommandPrefix() + "&rautoreply =LISTENERNAME command to change it"); + Command.sendWarningMessage(this.getChatName() + " Warning: In order to use the custom listener, please run the &7" + Command.getCommandPrefix() + "autoreply&r =LISTENERNAME command to change it"); } if (customReplyCommand.getValue() && replyCommand.getValue().equalsIgnoreCase("unchanged") && mc.player != null) { - Command.sendWarningMessage(this.getChatName() + " Warning: In order to use the custom reply command, please run the &7" + Command.getCommandPrefix() + "&rautoreply -REPLYCOMMAND command to change it"); + Command.sendWarningMessage(this.getChatName() + " Warning: In order to use the custom reply command, please run the &7" + Command.getCommandPrefix() + "autoreply&r -REPLYCOMMAND command to change it"); } startTime = System.currentTimeMillis(); }