Server.Items.BaseStrengthPotion.Drink C# (CSharp) Method

Drink() public method

public Drink ( Mobile from ) : void
from Mobile
return void
		public override void Drink( Mobile from )
		{
			if ( DoStrength( from ) )
			{
				BasePotion.PlayDrinkEffect( from );

				Consume();
			}
		}
	}