Did not check if someone has posted this already. For those of you who want to see buffs from other classes as well as your own when you turn on buff filtering, I solved this issue by modifying the Aura.lua file found in the pitbul/aura folder. Its a very easy modification, just copy-paste. I will show what I did for my priest. PPl can do the same with their class
This is the function in Aura.lua that defines which fiend buffs to filter for the priest class.
friendBuffs = {
[BSL["Divine Spirit"]] = true,
[BSL["Elune's Grace"]] = playerRace == "NightElf" or nil,
[BSL["Fear Ward"]] = (playerRace == "Draenei" or playerRace == "Dwarf") or nil,
[BSL["Power Infusion"]] = true,
[BSL["Power Word: Fortitude"]] = true,
[BSL["Power Word: Shield"]] = true,
[BSL["Prayer of Fortitude"]] = true,
[BSL["Prayer of Mending"]] = true,
[BSL["Prayer of Shadow Protection"]] = true,
[BSL["Prayer of Spirit"]] = true,
[BSL["Renew"]] = true,
[BSL["Symbol of Hope"]] = playerRace == "Draenei" or nil,
[BSL["Shadow Protection"]] = true,
I simply copy-pasted the relevant entries from the druid and paladin class. So my modified lua looks like this. Also changed the argument on fearward true since now all priests have fearward
}
friendBuffs = {
[BSL["Divine Spirit"]] = true,
[BSL["Elune's Grace"]] = playerRace == "NightElf" or nil,
[BSL["Fear Ward"]] = true,
[BSL["Power Infusion"]] = true,
[BSL["Power Word: Fortitude"]] = true,
[BSL["Power Word: Shield"]] = true,
[BSL["Prayer of Fortitude"]] = true,
[BSL["Prayer of Mending"]] = true,
[BSL["Prayer of Shadow Protection"]] = true,
[BSL["Prayer of Spirit"]] = true,
[BSL["Renew"]] = true,
[BSL["Symbol of Hope"]] = playerRace == "Draenei" or nil,
[BSL["Shadow Protection"]] = true,
[BSL["Innervate"]] = true,
[BSL["Lifebloom"]] = true,
[BSL["Regrowth"]] = true,
[BSL["Rejuvenation"]] = true,
[BSL["Tranquility"]] = true,
[BSL["Tree of Life"]] = true,
[BSL["Blessing of Protection"]] = true,
[BSL["Gift of the Naaru"]] = true,
}
Hey presto now I can see druid HoTs BoP fearward and GotN even with buff filtering on