branch sync #2

This commit is contained in:
mark 2009-01-31 00:02:21 +00:00
parent 96a37544fd
commit 4e6256b8cd
39 changed files with 415 additions and 137 deletions

View file

@ -3250,6 +3250,20 @@ namespace Server.Mobiles
}
#endregion
if ( Core.ML && this.Map == Faction.Facet )
{
Faction faction = Faction.Find( this );
if ( faction != null )
{
string adjunct = String.Format( "[{0}]", faction.Definition.Abbreviation );
if ( suffix.Length == 0 )
suffix = adjunct;
else
suffix = String.Concat( suffix, " ", adjunct );
}
}
return base.ApplyNameSuffix( suffix );
}