Server.Spells.Fifth.SummonCreatureSpell.CheckCast C# (CSharp) Method

CheckCast() public method

public CheckCast ( ) : bool
return bool
		public override bool CheckCast()
		{
			if ( !base.CheckCast() )
				return false;

			if ( (Caster.Followers + 2) > Caster.FollowersMax )
			{
				Caster.SendLocalizedMessage( 1049645 ); // You have too many followers to summon that creature.
				return false;
			}

			return true;
		}