Release 1.6.6

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:56 -06:00
parent e86b436c60
commit a4ee13ebbe
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
name: Factions
version: 1.6.6_dev
version: 1.6.6
main: com.massivecraft.factions.P
authors: [Olof Larsson, Brett Flannigan]
softdepend: [PermissionsEx, Permissions, Essentials, EssentialsChat, HeroChat, iChat, LocalAreaChat, LWC, nChat, ChatManager, CAPI, AuthMe, Vault, Spout, WorldEdit, WorldGuard, AuthDB, CaptureThePoints, CombatTag]

View File

@ -54,7 +54,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;
}