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

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

Resets the skill's cooldown in old combat.
Counter doesn't use the new cooldown system, but Vars, similar to Final Hit. Var10 is the cooldown for normal hits, Var11 is for knuckles. 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);
		}