Server.Mobiles.BaseGuildmaster.HandlesOnSpeech C# (CSharp) Method

HandlesOnSpeech() public method

public HandlesOnSpeech ( Mobile from ) : bool
from Mobile
return bool
		public override bool HandlesOnSpeech( Mobile from )
		{
			if ( from.InRange( this.Location, 2 ) )
				return true;

			return base.HandlesOnSpeech( from );
		}