Skip to content

Commit

Permalink
Cooldowns: Fix an error when a Mage uses Alter Time
Browse files Browse the repository at this point in the history
  • Loading branch information
nebularg committed Oct 25, 2020
1 parent f2b4657 commit 800caf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Cooldowns/Cooldowns.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1555,7 +1555,7 @@ do
-- Alter Time
specialEvents.SPELL_AURA_REMOVED[342246] = function(srcGUID)
local info = infoCache[srcGUID]
if info and info.talent[4] == 23072 then -- Master of Time
if info and info.talents[4] == 23072 then -- Master of Time
resetCooldown(info, 1953)
end
end
Expand Down

0 comments on commit 800caf8

Please sign in to comment.