fCraft.MessageBlock.GetMessage C# (CSharp) Method

GetMessage() public method

public GetMessage ( ) : String
return String
        public String GetMessage()
        {
            if ( this.Message == null )
                return "";
            if ( this.Message.Length < 1 )
                return "";
            string SortedMessage = Color.ReplacePercentCodes( Message );
            SortedMessage = Chat.ReplaceEmoteKeywords( SortedMessage );
            return String.Format( "MessageBlock: {0}{1}", Color.Green, SortedMessage );
        }