Lumiahna / RaidBuffStatus_Continued

Support de l'ancien RBS
Other
0 stars 0 forks source link

Issues talents and miss pet detection #1

Open Lumiahna opened 6 years ago

Lumiahna commented 6 years ago

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.

Lumiahna commented 6 years ago

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.

Lumiahna commented 6 years ago

Well it seems mage/hunter/warlock doesn't have a buff now on the following spells above. Need to look at talents directly which may increase load time and resources if you're in a large group.