Release 1.6.9.3

Also fix for improper message being sent to person who changes a faction description if "broadcastDescriptionChanges" is disabled
This commit is contained in:
Brettflan 2012-11-30 20:14:30 -06:00
parent 9e4cc676ea
commit 98db1ee2c4
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
name: Factions
version: 1.6.9.2
version: 1.6.9.3
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

@ -36,7 +36,8 @@ public class CmdDescription extends FCommand
if ( ! Conf.broadcastDescriptionChanges)
{
fme.msg("You have changed your faction description to:", myFaction.describeTo(fme));
fme.msg("You have changed the description for <h>%s<i> to:", myFaction.describeTo(fme));
fme.sendMessage(myFaction.getDescription());
return;
}