Server.Items.Moonstone.OnSingleClick C# (CSharp) Method

OnSingleClick() public method

public OnSingleClick ( Mobile from ) : void
from Mobile
return void
		public override void OnSingleClick( Mobile from )
		{
			if ( IsChildOf( from.Backpack ) )
			{
				Hue = Utility.RandomBirdHue();
				ProcessDelta();
				from.SendLocalizedMessage( 1005398 ); // The stone's substance shifts as you examine it.
			}

			base.OnSingleClick( from );
		}