Aura.Channel.Skills.Combat.SupportShot.Cancel C# (CSharp) Метод

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

Cancels skill, stopping the aim meter and disabling the fire effect.
public Cancel ( Creature creature, Skill skill ) : void
creature Aura.Channel.World.Entities.Creature
skill Skill
Результат void
		public void Cancel(Creature creature, Skill skill)
		{
			creature.AimMeter.Stop();

			// Disable fire arrow effect
			if (creature.Temp.FireArrow)
				Send.Effect(creature, Effect.FireArrow, false);
		}