From 800caf8447e068c51695db6a105bcde29b468295 Mon Sep 17 00:00:00 2001 From: Kyle Buller Date: Sun, 25 Oct 2020 11:28:41 -0500 Subject: [PATCH] Cooldowns: Fix an error when a Mage uses Alter Time --- modules/Cooldowns/Cooldowns.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Cooldowns/Cooldowns.lua b/modules/Cooldowns/Cooldowns.lua index 79ce29c..5cc1e14 100644 --- a/modules/Cooldowns/Cooldowns.lua +++ b/modules/Cooldowns/Cooldowns.lua @@ -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