From d81f8846e5b6ed8e4ba05e5c305c207451917c18 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Fri, 28 Jun 2024 21:47:55 -0400 Subject: [PATCH] Small Nametags improvement --- src/pc/nametags.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pc/nametags.c b/src/pc/nametags.c index a3e013de..1abebabe 100644 --- a/src/pc/nametags.c +++ b/src/pc/nametags.c @@ -96,9 +96,9 @@ void nametags_render(void) { snprintf(name, MAX_CONFIG_STRING, "%s", np->name); name_without_hex(name); Color color = { - np->palette.parts[EMBLEM][0], - np->palette.parts[EMBLEM][1], - np->palette.parts[EMBLEM][2] + np->overridePalette.parts[EMBLEM][0], + np->overridePalette.parts[EMBLEM][1], + np->overridePalette.parts[EMBLEM][2] }; f32 measure = djui_hud_measure_text(name) * scale * 0.5f;