From c64df22b635511ae2f1d12fd0f2f2a81315a83a6 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 10 Jul 2016 17:42:20 +1000 Subject: [PATCH] Don't show player nametags to everyone before match has started --- qcsrc/common/ent_cs.qc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc index cafef4868..e69998563 100644 --- a/qcsrc/common/ent_cs.qc +++ b/qcsrc/common/ent_cs.qc @@ -61,8 +61,9 @@ sf |= this.m_forceupdate; this.m_forceupdate = 0; bool valid = - IS_PLAYER(player) // player must be active - || player == to // player is self + time > game_starttime + && (IS_PLAYER(player) // player must be active + || player == to) // player is self ; if (!valid) sf = 0; if (chan == MSG_ENTITY) -- 2.39.2