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

HandlesOnSpeech() public méthode

public HandlesOnSpeech ( Server.Mobile from ) : bool
from Server.Mobile
Résultat bool
		public override bool HandlesOnSpeech( Mobile from )
		{
			if ( from.Alive && from.InRange( this, 3 ) )
				return true;

			return base.HandlesOnSpeech( from );
		}