finish help command

This commit is contained in:
Flemmli97 2021-06-09 14:06:29 +02:00
parent 47380161c7
commit e5227d6713
3 changed files with 4 additions and 6 deletions

View File

@ -58,8 +58,7 @@ public class CommandHelp {
if (i == 0) {
context.getSource().sendFeedback(PermHelper.simpleColoredText(String.format(ConfigHandler.lang.helpCmdSyntax, cmdHelp[i]), Formatting.GOLD), false);
context.getSource().sendFeedback(PermHelper.simpleColoredText(""), false);
}
else {
} else {
context.getSource().sendFeedback(PermHelper.simpleColoredText(cmdHelp[i], Formatting.GOLD), false);
}
}

View File

@ -14,7 +14,6 @@ import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.lang.reflect.Field;
import java.util.List;
public class LangConfig {