Reformat.

This commit is contained in:
drtshock
2015-04-27 12:03:11 -05:00
parent d690786803
commit f97ba1e694
12 changed files with 73 additions and 55 deletions
@@ -58,7 +58,7 @@ public enum Lang {
/**
* Lang enum constructor.
*
* @param path The string path.
* @param path The string path.
* @param start The default string.
*/
Lang(String path, String start) {
@@ -77,8 +77,9 @@ public enum Lang {
@Override
public String toString() {
if (this == TITLE)
if (this == TITLE) {
return ChatColor.translateAlternateColorCodes('&', LANG.getString(this.path, def)) + " ";
}
return ChatColor.translateAlternateColorCodes('&', LANG.getString(this.path, def));
}