Release 1.7.3 alpha

Also I'm sneaking in another minor fix for the coloring of the faction limit error message
This commit is contained in:
Brettflan
2012-02-26 21:34:59 -06:00
parent 3c4e766ba2
commit 460d280387
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ public class CmdJoin extends FCommand
if (Conf.factionMemberLimit > 0 && faction.getFPlayers().size() >= Conf.factionMemberLimit)
{
msg("<b>The faction %s is at the limit of %d members, so %s cannot currently join.", faction.getTag(fme), Conf.factionMemberLimit, fplayer.describeTo(fme, false));
msg(" <b>!<white> The faction %s is at the limit of %d members, so %s cannot currently join.", faction.getTag(fme), Conf.factionMemberLimit, fplayer.describeTo(fme, false));
return;
}