Added buff containers for vanity and consolidated buffs to match base… (#98)

* Added buff containers for vanity and consolidated buffs to match base ui feature

* use locals and don't unpack values 2x

* Moved vanity and consolidated settings to base profile instead of private per character
This commit is contained in:
Jeremy P
2026-01-19 11:47:05 -08:00
committed by GitHub
parent e11b8b0817
commit 44fe39508a
5 changed files with 299 additions and 11 deletions
+20
View File
@@ -149,6 +149,26 @@ E.Options.args.auras = {
E:StaticPopup_Show("PRIVATE_RL")
end
},
mergeVanity = {
order = 3.1,
type = "toggle",
name = L["Merge Vanity"],
get = function(info) return E.db.auras[info[#info]] end,
set = function(info, value)
E.db.auras[info[#info]] = value
A:triggerUpdateOnNext()
end
},
mergeConsolidated = {
order = 3.2,
type = "toggle",
name = L["Merge Consolidated"],
get = function(info) return E.db.auras[info[#info]] end,
set = function(info, value)
E.db.auras[info[#info]] = value
A:triggerUpdateOnNext()
end
},
general = {
order = 4,
type = "group",