From 33440c85de0d9c55b8a71d1cb5045c0936f70fc0 Mon Sep 17 00:00:00 2001 From: Gargul Date: Wed, 5 Jun 2024 14:51:20 +0200 Subject: [PATCH] Fixed: +1 overview not showing class color for DKs --- Interface/PlusOnes/OverView.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Interface/PlusOnes/OverView.lua b/Interface/PlusOnes/OverView.lua index fd9c3d93..65b36ead 100644 --- a/Interface/PlusOnes/OverView.lua +++ b/Interface/PlusOnes/OverView.lua @@ -228,8 +228,7 @@ function Overview:addPlayerPlusOneEntries(Parent) local PlayerName = AceGUI:Create("Label"); PlayerName:SetFontObject(_G["GameFontNormal"]); - PlayerName:SetText(GL:nameFormat(Entry.name)); - PlayerName:SetColor(unpack(GL:classRGBColor(Entry.class))) + PlayerName:SetText(GL:nameFormat{ name = Entry.name, colorize = true, }); PlayerName:SetHeight(28); PlayerName:SetWidth(320); Row:AddChild(PlayerName);