Server.Mobiles.BaseGuildmaster.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, 2 ) )
				return true;

			return base.HandlesOnSpeech( from );
		}