Batch formatting fix.

This commit is contained in:
Steven Lawson
2013-07-02 14:31:22 -04:00
parent 44fb26b27f
commit ba22aedc58
20 changed files with 178 additions and 150 deletions

View File

@ -974,19 +974,21 @@ public class TFM_Util
}
}
}
public static String getPrefix(CommandSender sender, boolean senderIsConsole)
{
String prefix;
if (senderIsConsole) {
prefix = ChatColor.BLUE + "(Console)";
if (senderIsConsole)
{
prefix = ChatColor.BLUE + "(Console)";
}
else
{
if (TFM_SuperadminList.isSeniorAdmin(sender))
{
prefix = ChatColor.LIGHT_PURPLE + "(SrA)";
} else
}
else
{
prefix = ChatColor.GOLD + "(SA)";
}