Server.Spells.Ninjitsu.SurpriseAttack.GetMalus C# (CSharp) Method

GetMalus() public static method

public static GetMalus ( Mobile target, int &malus ) : bool
target Mobile
malus int
return bool
		public static bool GetMalus( Mobile target, ref int malus )
		{
			SurpriseAttackInfo info = m_Table[target] as SurpriseAttackInfo;

			if ( info == null )
				return false;

			malus = info.m_Malus;
			return true;
		}