revert more aliases added for ccc6db61ef

This commit is contained in:
Bella 2020-03-08 13:23:14 -04:00
parent a2eff4ba19
commit 4234219c7a
5 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ import me.zeroeightsix.kami.module.modules.chat.AutoReply;
*/ */
public class AutoReplyCommand extends Command { public class AutoReplyCommand extends Command {
public AutoReplyCommand() { public AutoReplyCommand() {
super("autoreply", new ChunkBuilder().append("message").append("=listener").append("-replyCommand").build(), "reply"); super("autoreply", new ChunkBuilder().append("message").append("=listener").append("-replyCommand").build());
setDescription("Allows you to customize AutoReply's message setting"); setDescription("Allows you to customize AutoReply's message setting");
} }

View File

@ -11,7 +11,7 @@ import me.zeroeightsix.kami.module.modules.chat.CustomChat;
*/ */
public class CustomChatCommand extends Command { public class CustomChatCommand extends Command {
public CustomChatCommand() { public CustomChatCommand() {
super("customchat", new ChunkBuilder().append("ending").build(), "chat"); super("customchat", new ChunkBuilder().append("ending").build());
setDescription("Allows you to customize CustomChat's custom setting"); setDescription("Allows you to customize CustomChat's custom setting");
} }

View File

@ -11,7 +11,7 @@ import me.zeroeightsix.kami.module.ModuleManager;
*/ */
public class DescriptionCommand extends Command { public class DescriptionCommand extends Command {
public DescriptionCommand() { public DescriptionCommand() {
super("description", new ChunkBuilder().append("module").build(), "tooltip"); super("description", new ChunkBuilder().append("module").build());
setDescription("Prints a module's description into the chat"); setDescription("Prints a module's description into the chat");
} }

View File

@ -16,7 +16,7 @@ import java.util.concurrent.atomic.AtomicReference;
*/ */
public class EnabledCommand extends Command { public class EnabledCommand extends Command {
public EnabledCommand() { public EnabledCommand() {
super("enabledlist", null, "enabled", "enabledmodules"); super("enabled", null);
setDescription("Prints Enabled Modules"); setDescription("Prints Enabled Modules");
} }

View File

@ -13,7 +13,7 @@ import net.minecraft.block.Block;
*/ */
public class XRayCommand extends Command { public class XRayCommand extends Command {
public XRayCommand() { public XRayCommand() {
super("xray", new ChunkBuilder().append("help").append("+block|-block|=block").append("list|defaults|clear|invert").build(), "wallhack", "wireframe"); super("xray", new ChunkBuilder().append("help").append("+block|-block|=block").append("list|defaults|clear|invert").build());
setDescription("Allows you to add or remove blocks from the &7xray &8module"); setDescription("Allows you to add or remove blocks from the &7xray &8module");
} }