Aura.Channel.Skills.Combat.Defense.Complete C# (CSharp) Метод

Complete() публичный Метод

Resets the skill's cooldown in old combat.
Defense doesn't use the new cooldown system, but Vars, similar to Final Hit. Var7 seems to be the cooldown. That's why we have to reset it here.
public Complete ( Creature creature, Skill skill, Aura.Shared.Network.Packet packet ) : void
creature Aura.Channel.World.Entities.Creature
skill Skill
packet Aura.Shared.Network.Packet
Результат void
		public override void Complete(Creature creature, Skill skill, Packet packet)
		{
			base.Complete(creature, skill, packet);

			if (!AuraData.FeaturesDb.IsEnabled("CombatSystemRenewal"))
				Send.ResetCooldown(creature, skill.Info.Id);
		}