From 3b13b06b001459569c641bde854c3c62c083cfe7 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Wed, 15 May 2024 18:35:13 -0400 Subject: [PATCH] Fix Nametags color inconsistency --- 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 9ac57ae0..a5397938 100644 --- a/src/pc/nametags.c +++ b/src/pc/nametags.c @@ -83,9 +83,9 @@ void nametags_render(void) { strncpy(name, np->name, MAX_PLAYER_STRING + 1); name_without_hex(name); Color color = { - np->palette.parts[SHIRT][0], - np->palette.parts[SHIRT][1], - np->palette.parts[SHIRT][2] + np->palette.parts[CAP][0], + np->palette.parts[CAP][1], + np->palette.parts[CAP][2] }; f32 measure = djui_hud_measure_text(name) * scale * 0.5f; f32 alpha = m->action == ACT_START_CROUCHING ||