Issues talents and miss pet detection
Lumiahna opened this issue ยท 2 comments
From Slaty: it looks like it does not handle correctly the talents Lonely Winter (mage) and Lone Wolf (hunter). It indicates missing pets for those players. I have not met a warlock yet, so no idea if Grimoire of Sacrifice is affected too.
if class == "HUNTER" then
needspet = not unit.hasbuff[BS[155228]] -- Lone Wolf
elseif class == "WARLOCK" then
needspet = not unit.hasbuff[BS[108503]] -- Grimoire of Sacrifice
Well we shouldn't be aware of Hunt and Warlock because talents has been added on call pet detection.
elseif class == "MAGE" then
if raid.classes.MAGE[name].spec == 3 then -- frost
needspet = true
else
needspet = false
end
Meanwhile I forgot to add Mage talent id 205024 as Lonely Winter wich allow Mage to play without water elemental pet.