Server.Items.BaseWand.DoWandTarget C# (CSharp) Méthode

DoWandTarget() public méthode

public DoWandTarget ( Mobile from, object o ) : void
from Mobile
o object
Résultat void
		public virtual void DoWandTarget( Mobile from, object o )
		{
			if ( Deleted || Charges <= 0 || Parent != from || o is StaticTarget || o is LandTarget )
				return;

			if ( OnWandTarget( from, o ) )
				ConsumeCharge( from );
		}