Show charged combo point in Numeric mode

This commit is contained in:
Parnic
2022-11-16 21:09:44 -06:00
parent 7d32b6d8c6
commit 2a0db2eb01
3 changed files with 5 additions and 0 deletions

View File

@ -545,6 +545,9 @@ function ComboPoints.prototype:UpdateComboPoints(...)
self.frame.numeric:SetTextColor(r, g, b, 0.7)
local pointsText = tostring(points)
if self.moduleSettings.bShowCharged and self:IsChargedPoint(points) then
pointsText = pointsText.."@"
end
if anticipate > 0 then
pointsText = pointsText.."+"..tostring(anticipate)
end