From eb1b3d7db970a7aa4f5bdba3ae1f240567439105 Mon Sep 17 00:00:00 2001 From: Pepich Date: Wed, 1 Feb 2017 17:52:35 +0100 Subject: [PATCH] Fixed cmdmanager string --- .../redstoner/modules/chatgroups/Chatgroups.java | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/com/redstoner/modules/chatgroups/Chatgroups.java b/src/com/redstoner/modules/chatgroups/Chatgroups.java index ba40968..edf67be 100644 --- a/src/com/redstoner/modules/chatgroups/Chatgroups.java +++ b/src/com/redstoner/modules/chatgroups/Chatgroups.java @@ -71,11 +71,11 @@ public class Chatgroups implements Module, Listener @Override public String getCommandString() { - return "command cgtoggle{\n" + + return "command cgtoggle {\n" + " help Toggles your cgtoggle status.;\n"+ " run cgtoggle;\n" + "}\n" + - "command cgkey{\n" + + "command cgkey {\n" + " help Tells you your current chatgroup key.;\n"+ " run getcgkey;\n" + " [string:key] {\n" + @@ -83,18 +83,16 @@ public class Chatgroups implements Module, Listener " run setcgkey key;\n" + " }\n" + "}\n" + - "command cgsay{\n" + + "command cgsay {\n" + " [string:message...] {\n" + " help Chats in your chatgroup.\n"+ " run cgsay message\n" + " }\n" + "\n}" + - "command cg{\n" + - " join {\n"+ - " [String:group]{\n" + - " help Joins a chatgroup.;\n" + - " run cgjoin group;\n" + - " }\n" + + "command cg {\n" + + " join [String:group] {\n" + + " help Joins a chatgroup.;\n" + + " run cgjoin group;\n" + " }\n" + " leave {\n" + " help leaves your chatgroup.;\n" +