Skip to content
Snippets Groups Projects
Commit ded34ce6 authored by Eric Wykoff's avatar Eric Wykoff
Browse files

clones get their own folding cooldowns

parent 49401df7
No related branches found
No related tags found
No related merge requests found
......@@ -225,6 +225,14 @@ makeParadoxClone = function(self, target, duration)
-- remove timed effects
m:removeTimedEffectsOnClone()
-- reset folds for our Warden clones
for tid, cd in pairs(m.talents_cd) do
local t = m:getTalentFromId(tid)
if t.type[1]:find("^chronomancy/manifold") and m:knowTalent(tid) then
m:alterTalentCoolingdown(t, -cd)
end
end
return m
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment