Server.Items.RepairDeed.VerifyRegion C# (CSharp) Méthode

VerifyRegion() public méthode

public VerifyRegion ( Server.Mobile m ) : bool
m Server.Mobile
Résultat bool
		public bool VerifyRegion( Mobile m )
		{
			//TODO: When the entire region system data is in, convert to that instead of a proximity thing.

			if( !m.Region.IsPartOf( typeof( TownRegion ) ) )
				return false;

			return true;
		}