More refactoring... the commands are refactored now :)

This commit is contained in:
Olof Larsson
2011-03-22 15:45:41 +01:00
parent 0b96a821ce
commit d7c1d0fce3
33 changed files with 1278 additions and 122 deletions

View File

@@ -38,7 +38,7 @@ public class TextUtil {
return implode(list, " ");
}
public static String commandHelp(List<String> aliases, String param, String desc) {
/*public static String commandHelp(List<String> aliases, String param, String desc) {
ArrayList<String> parts = new ArrayList<String>();
parts.add(Conf.colorCommand+Conf.aliasBase.get(0));
parts.add(TextUtil.implode(aliases, ", "));
@@ -50,7 +50,7 @@ public class TextUtil {
}
//Log.debug(TextUtil.implode(parts, " "));
return TextUtil.implode(parts, " ");
}
}*/
public static String getMaterialName(Material material) {
String ret = material.toString();