Server.Items.BaseMagicFish.Apply C# (CSharp) Method

Apply() public method

public Apply ( Mobile from ) : bool
from Mobile
return bool
		public virtual bool Apply( Mobile from )
		{
			bool applied = Spells.SpellHelper.AddStatOffset( from, Type, Bonus );

			if ( !applied )
				from.SendLocalizedMessage( 502173 ); // You are already under a similar effect.

			return applied;
		}