Add support for new stats stuff, cvar changes, and auto vendoring. (#30)

* Enhanced/CharacterFrame: Add new stat tooltips

* Enhanced/CharacterFrame: crit is a percent of base crit

* Enhanced/CharacterSheet: Update to use new cvar

* ElvUI/Merchant: Remove auto sell gray / auto repair. Client handles these now.
This commit is contained in:
Andrew
2023-02-05 17:43:09 -07:00
committed by GitHub
parent ff118b5dc0
commit 221dffffe6
10 changed files with 25 additions and 168 deletions
-7
View File
@@ -99,13 +99,6 @@ local function CreateBagsConfig()
get = function(info) return E.global.profileCopy.bags[info[#info]] end,
set = function(info, value) E.global.profileCopy.bags[info[#info]] = value end
}
config.args.vendorGrays = {
order = 5,
type = "toggle",
name = L["Vendor Grays"],
get = function(info) return E.global.profileCopy.bags[info[#info]] end,
set = function(info, value) E.global.profileCopy.bags[info[#info]] = value end
}
return config
end