We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Didn't find this until last night:
I have the cfg.showArtifactPowerBar = true
this results in an error when I swap it out for something else on my max level character
To fix this (temp) I have changed the following on Player.lua Line 222
from if cfg.showArtifactPowerBar then to if cfg.showArtifactPowerBar and C_AzeriteEmpoweredItem.IsHeartOfAzerothEquipped() then
I can't quite figure out how to get this to check on the fly.. but it allowed me to keep it on for my other characters :)
The text was updated successfully, but these errors were encountered:
@Aideenwolf, in cfg.lua I changed both cfg.alwaysShowArtifactXPBar = false and cfg.showArtifactPowerBar = false. That corrected the issue for me.
cfg.alwaysShowArtifactXPBar = false
cfg.showArtifactPowerBar = false
Sorry, something went wrong.
I know that is an option.. but I like the bar for my smaller alts who have not moved on.. i'm wierd like that ;)
No branches or pull requests
Didn't find this until last night:
I have the cfg.showArtifactPowerBar = true
this results in an error when I swap it out for something else on my max level character
To fix this (temp) I have changed the following on Player.lua Line 222
from
if cfg.showArtifactPowerBar then
to
if cfg.showArtifactPowerBar and C_AzeriteEmpoweredItem.IsHeartOfAzerothEquipped() then
I can't quite figure out how to get this to check on the fly.. but it allowed me to keep it on for my other characters :)
The text was updated successfully, but these errors were encountered: