Revert "Add absorbs, heal absorbs (#90)"

This reverts commit 3d7b873aa9.
This commit is contained in:
andrew6180
2025-12-09 22:59:40 -07:00
parent 53b56ad45b
commit b92401f2b3
9 changed files with 126 additions and 673 deletions
+1 -29
View File
@@ -3901,20 +3901,8 @@ E.Options.args.unitframe = {
name = L["Others"],
hasAlpha = true
},
absorbs = {
order = 4,
type = "color",
name = L["Absorbs"],
hasAlpha = true
},
healAbsorbs = {
order = 5,
type = "color",
name = L["Heal Absorbs"],
hasAlpha = true
},
maxOverflow = {
order = 6,
order = 4,
type = "range",
name = L["Max Overflow"],
desc = L["Max amount of overflow allowed to extend past the end of the health bar."],
@@ -3922,22 +3910,6 @@ E.Options.args.unitframe = {
min = 0, max = 1, step = 0.01,
get = function(info) return E.db.unitframe.colors.healPrediction.maxOverflow end,
set = function(info, value) E.db.unitframe.colors.healPrediction.maxOverflow = value UF:Update_AllFrames() end
},
overflowHeals = {
order = 7,
type = "toggle",
name = L["Overflow Heals"],
desc = L["When enabled, incoming heals overflow past the health bar, otherwise bar is reverse filled."],
get = function(info) return E.db.unitframe.colors.healPrediction.overflowHeals end,
set = function(info, value) E.db.unitframe.colors.healPrediction.overflowHeals = value UF:Update_AllFrames() end
},
overflowAbsorbs = {
order = 8,
type = "toggle",
name = L["Overflow Absorbs"],
desc = L["When enabled, absorb shields overflow past the health bar, otherwise bar is reverse filled."],
get = function(info) return E.db.unitframe.colors.healPrediction.overflowAbsorbs end,
set = function(info, value) E.db.unitframe.colors.healPrediction.overflowAbsorbs = value UF:Update_AllFrames() end
}
}
},