Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MY_Cataclysm/src/MY_CataclysmMain.lua
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ local function UpdateTeamMonData()
if data.bCheckLevel then
v.nLevel = data.nLevel
end
v.szDisplayName = data.szName and X.RenderTemplateString(data.szName, nil, -1, false, false) or nil
v.nIcon = data.nIcon
table.insert(aBuff, v)
end
Expand Down
2 changes: 1 addition & 1 deletion MY_Cataclysm/src/MY_CataclysmParty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1699,7 +1699,7 @@ function D.UpdateCharaterBuff(p, handle, tKeep)
local szCountdownKey = 'MY_CATACLYSM_' .. tBuff.dwID .. '_' .. tRule.szKey
FireUIEvent('MY_LIFEBAR_COUNTDOWN', dwCharID, 'BUFF', szCountdownKey, {
dwBuffID = tBuff.dwID,
szText = tBuff.szName,
szText = tRule.szDisplayName or tBuff.szName,
nLogicFrame = tBuff.nEndFrame,
col = tRule.colScreenHead or tRule.col,
nPriority = tItem.nPriority,
Expand Down