From 5697d9c8d5dafa99a7f37b570363623e657d48fa Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Sun, 8 Jun 2025 09:11:38 -0400 Subject: [PATCH] Only draw variant gametype HUDs for view 0 --- src/k_hud.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/k_hud.cpp b/src/k_hud.cpp index d36d74169..4e32c8150 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -7640,13 +7640,12 @@ void K_drawKartHUD(void) { K_DrawKartPositionNum(stplyr->position); } - } - K_drawKartTeamScores(false, 0); - - if (K_InRaceDuel()) - { - K_drawKartDuelScores(); + if (R_GetViewNumber() == 0) + { + K_drawKartTeamScores(false, 0); + K_drawKartDuelScores(); + } } if (LUA_HudEnabled(hud_gametypeinfo))