From ece6f9ded792d2ca1909d413c0b2374acee9c021 Mon Sep 17 00:00:00 2001 From: div0 Date: Sun, 11 Oct 2009 15:59:58 +0000 Subject: [PATCH] do not show personal records in the actual race git-svn-id: svn://svn.icculus.org/nexuiz/trunk@8104 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/client/sbar.qc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/qcsrc/client/sbar.qc b/data/qcsrc/client/sbar.qc index 47addb681..b432e48f6 100644 --- a/data/qcsrc/client/sbar.qc +++ b/data/qcsrc/client/sbar.qc @@ -3048,6 +3048,9 @@ void CSQC_race_hud(void) float f; // yet another function has this score = me.(scores[ps_primary]); + if not((scores_flags[ps_primary] & SFL_TIME) && !teamplay) // race/cts record display on HUD + return; // no records in the actual race + drawfont = sbar_bigfont; vector pos; pos_x = 2; -- 2.39.2