diff --git a/ConRO.toc b/ConRO.toc index 5a7d902..ea6656b 100644 --- a/ConRO.toc +++ b/ConRO.toc @@ -1,6 +1,6 @@ ## Title:-|cffFFFFFFConRO|r- Conflict Rotation Optimizer ## Notes: Rotation helper framework. -## Version: 11.0.0 +## Version: 11.0.1 ## Author: Vae ## Interface: 110002 ## SavedVariables: ConROPreferences diff --git a/core.lua b/core.lua index 61efa3f..cee24de 100644 --- a/core.lua +++ b/core.lua @@ -82,7 +82,7 @@ ConRO.Classes = { local defaultOptions = { profile = { - _Disable_Info_Messages = false, + _Disable_Info_Messages = true, _Intervals = 0.20, _Unlock_ConRO = true, diff --git a/helper.lua b/helper.lua index b743e92..cef9a36 100644 --- a/helper.lua +++ b/helper.lua @@ -1439,7 +1439,12 @@ function ConRO:PetAssist() end function ConRO:Totem(spellID) - local spellName = GetSpellInfo(spellID) + local spellInfo = C_Spell.GetSpellInfo(spellID) + if not spellInfo then + return false + end + + local spellName = spellInfo.name for i=1,4 do local _, totemName, startTime, duration = GetTotemInfo(i); if spellName == totemName then