Server.Items.BaseBagBall.Dye C# (CSharp) Method

Dye() public method

public Dye ( Mobile from, DyeTub sender ) : bool
from Mobile
sender DyeTub
return bool
		public bool Dye( Mobile from, DyeTub sender )
		{
			if ( Deleted )
				return false;

			Hue = sender.DyedHue;

			return true;
		}