Server.Mobiles.PlayerMobile.MutateSpeech C# (CSharp) Method

MutateSpeech() public method

public MutateSpeech ( List hears, string &text, object &context ) : bool
hears List
text string
context object
return bool
        public override bool MutateSpeech(List<Mobile> hears, ref string text, ref object context)
        {
            if (Alive)
                return false;

            return base.MutateSpeech(hears, ref text, ref context);
        }