Server.SkillHandlers.AnimalTaming.MustBeSubdued C# (CSharp) Méthode

MustBeSubdued() public static méthode

public static MustBeSubdued ( BaseCreature bc ) : bool
bc BaseCreature
Résultat bool
		public static bool MustBeSubdued( BaseCreature bc )
		{
            if (bc.Owners.Count > 0) { return false; } //Checks to see if the animal has been tamed before
			return bc.SubdueBeforeTame && (bc.Hits > (bc.HitsMax / 10));
		}