Server.Spells.TransformationSpellHelper.CheckCast C# (CSharp) Méthode

CheckCast() public static méthode

public static CheckCast ( Mobile caster ) : bool
caster Mobile
Résultat bool
		public static bool CheckCast( Mobile caster )
		{
			if( !caster.CanBeginAction( typeof( PolymorphSpell ) ) )
			{
				caster.SendLocalizedMessage( 1061628 ); // You can't do that while polymorphed.
				return false;
			}

			return true;
		}