Server.Mobiles.Banker.HandlesOnSpeech C# (CSharp) Méthode

HandlesOnSpeech() public méthode

public HandlesOnSpeech ( Mobile from ) : bool
from Mobile
Résultat bool
        public override bool HandlesOnSpeech( Mobile from )
        {
            if ( from.InRange( this.Location, 12 ) )
                return true;

            return base.HandlesOnSpeech( from );
        }