You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
787 B
29 lines
787 B
local SLE, _, E, L = unpack(select(2, ...))
|
|
local DT = E.DataTexts
|
|
|
|
--GLOBALS: unpack, select, tinsert, DURABILITY, MANA_REGEN
|
|
local tinsert = tinsert
|
|
local MANA_REGEN = MANA_REGEN
|
|
|
|
local function configTable()
|
|
if not SLE.initialized then return end
|
|
local ACH = E.Libs.ACH
|
|
|
|
E.Options.args.sle.args.modules.args.datatext.args.sldatatext.args.slregen = {
|
|
type = 'group',
|
|
name = MANA_REGEN,
|
|
order = 7,
|
|
args = {
|
|
short = {
|
|
order = 1,
|
|
type = 'toggle',
|
|
name = L["Short text"],
|
|
desc = L["Changes the text string to a shorter variant."],
|
|
get = function() return E.db.sle.dt.regen.short end,
|
|
set = function(_, value) E.db.sle.dt.regen.short = value; DT:LoadDataTexts() end,
|
|
},
|
|
},
|
|
}
|
|
end
|
|
|
|
tinsert(SLE.Configs, configTable)
|
|
|