This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Only curses show up as dispeallable buffs for druids. Ive tried configure in every way possible and this just remains true for every way. Posions should sow up irregardless the spec, and don't show up. Magic should show up if we have Nature's Cure talent. None of these 2 show up in any case.
I figured out a workaround for anyone that doesnt want to wait for a fix:Open your SUF'S Unit.lua files (AddOns\ShadowedUnitFrames\modules\units.lua) and go to the part that says "-- Handle figuring out what auras players can cure"On the line: ["DRUID"] = {[2893] = {"Poison"}, [8946] = {"Poison"}, [2782] = {"Curse"}},substitute for: ["DRUID"] = {[2782] = {"Poison", "Curse"}, [88423] = {"Magic"}},done.The logic is that the number in [] are the SpellIDs o the spells that let you dispel something, and the tags in {} the types that that spell dispel. Other classes can be fixed following the same logic.
For anyone wondering about Shaman, this worked. Thank you to Strangemolars for the post.
For shaman the line of code is:
["SHAMAN"] = {[2870] = {"Disease"}, [8170] = {"Disease"}, [526] = {"Poison"}, [8166] = {"Poison"}, [51886] = {"Poison", "Disease", "Curse"}}
just add "Magic" to the end of this line of code and now my SUF detects magic for curable debuffs
["SHAMAN"] = {[2870] = {"Disease"}, [8170] = {"Disease"}, [526] = {"Poison"}, [8166] = {"Poison"}, [51886] = {"Poison", "Disease", "Curse", "Magic"}}
THANK YOU SO MUCH!
i was having the shaman issue, thank you both for figuring that out.
To post a comment, please login or register a new account.