Server.Items.DeathRobe.OnDroppedToMobile C# (CSharp) Method

OnDroppedToMobile() public method

public OnDroppedToMobile ( Mobile from, Mobile target ) : bool
from Mobile
target Mobile
return bool
		public override bool OnDroppedToMobile( Mobile from, Mobile target )
		{
			if (m_DecayTimer != null )
			{
				m_DecayTimer.Stop();
				m_DecayTimer = null;
			}

			return true;
		}