Skip to content

Commit

Permalink
Updated Toc
Browse files Browse the repository at this point in the history
  • Loading branch information
Vae2009 committed Dec 11, 2022
1 parent 007416b commit a61ab56
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ConRO_DemonHunter.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Title:-|cffFFFFFFConRO|r- |cffA330C9Demon Hunter|r
## Version: 10.0.4
## Version: 10.0.5
## Author: Vae
## Interface: 10002
## Interface: 100002
## Dependencies: ConRO
## LoadOnDemand: 1

Expand Down
7 changes: 7 additions & 0 deletions demonhunter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,9 @@ function ConRO.DemonHunter.Vengeance(_, timeShift, currentSpell, gcd, tChosen, p
local _Shear, _Shear_RDY = ConRO:AbilityReady(Ability.Shear, timeShift);
local _SigilofFlame, _SigilofFlame_RDY = ConRO:AbilityReady(Ability.SigilofFlame, timeShift);
local _SigilofFlameCS, _SigilofFlameCS_RDY = ConRO:AbilityReady(Ability.SigilofFlameCS, timeShift);
local _SigilofFlamePS, _SigilofFlamePS_RDY = ConRO:AbilityReady(Ability.SigilofFlamePS, timeShift);
local _SigilofFlame_DEBUFF = ConRO:TargetAura(Debuff.SigilofFlame, timeShift);

local _SpiritBomb, _SpiritBomb_RDY = ConRO:AbilityReady(Ability.SpiritBomb, timeShift);
local _Frailty_DEBUFF, _Frailty_COUNT = ConRO:TargetAura(Debuff.Frailty, timeShift + 3);
local _SoulCarver, _SoulCarver_RDY = ConRO:AbilityReady(Ability.SoulCarver, timeShift);
Expand All @@ -445,6 +447,11 @@ function ConRO.DemonHunter.Vengeance(_, timeShift, currentSpell, gcd, tChosen, p
--_ElysianDecree = _ElysianDecreeCS;
end

if tChosen[Passive.PreciseSigils.talentID] then
_SigilofFlame_RDY = _SigilofFlamePS_RDY;
_SigilofFlame = _SigilofFlamePS;
end

--Indicators
ConRO:AbilityInterrupt(_Disrupt, _Disrupt_RDY and ConRO:Interrupt());
ConRO:AbilityPurge(_ConsumeMagic, _ConsumeMagic_RDY and ConRO:Purgable());
Expand Down
5 changes: 3 additions & 2 deletions demonhunter_ids.lua
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ local ConRO_DemonHunter, ids = ...;
Imprison = {spellID = 217832, talentID = 112927},
Metamorphosis = {spellID = 187827},
SigilofFlame = {spellID = 204596, talentID = 112854},
SigilofFlameCS = {spellID = 204513, talentID = 112854},
SigilofFlameCS = {spellID = 204513, talentID = 112854},
SigilofFlamePS = {spellID = 389810, talentID = 112855},
SigilofMisery = {spellID = 207684, talentID = 112859},
SpectralSight = {spellID = 188501},
TheHunt = {spellID = 370965, talentID = 112837},
Expand All @@ -202,7 +203,7 @@ local ConRO_DemonHunter, ids = ...;
Shear = {spellID = 203782},
SigilofChains = {spellID = 202138, talentID = 112867},
SigilofSilence = {spellID = 202137, talentID = 112904},
SigilofSilenceCS = {spellID = 207682, talentID = 112904},
SigilofSilenceCS = {spellID = 207682, talentID = 112904},
SoulBarrier = {spellID = 263648, talentID = 112870},
SoulCarver = {spellID = 207407, talentID = 112898},
SoulCleave = {spellID = 228477},
Expand Down

0 comments on commit a61ab56

Please sign in to comment.