Rolled ClassMana bars into PlayerAltMana

There are too many classes that need to care about mana as a background resource in addition to whatever their primary resource is to keep creating class-specific bars, so let's just make one bar that does it all. I've done a one-time inherit of DruidMana's settings since it's the only bar that's been in a Release version that serves this purpose and should migrate its settings forward.
This commit is contained in:
Parnic
2016-05-28 02:16:26 -05:00
parent 6906f3545d
commit 7b3d910956
6 changed files with 96 additions and 201 deletions

View File

@ -167,6 +167,12 @@ function IceCore.prototype:CheckDisplayUpdateMessage()
self.settings.modules["LacerateCount"] = {}
end
end
if self.accountSettings.lastRunVersion <= 20160527053225 then
if self.settings.modules["DruidMana"] ~= nil then
self.settings.modules["PlayerAltMana"] = self.settings.modules["DruidMana"]
self.settings.modules["DruidMana"] = nil
end
end
self.accountSettings.lastRunVersion = thisVersion
end
end