From ac29cc375dd6ac51bce3cec39bffcab2a250785e Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 22 Jan 2021 14:53:26 +0100 Subject: [PATCH] Entcs: fix health/armor bar above players not updated on ready-restart --- qcsrc/common/ent_cs.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc index 777bd417a..a6f39e213 100644 --- a/qcsrc/common/ent_cs.qc +++ b/qcsrc/common/ent_cs.qc @@ -177,7 +177,7 @@ ENTCS_PROP(SOLID, true, sv_solid, solid, ENTCS_SET_NORMAL, { if (radar_showenemies) break; if (SAME_TEAM(to, player)) break; - if (!(IS_PLAYER(to) || to.caplayer) && time > game_starttime) break; + if (!(IS_PLAYER(to) || to.caplayer)) break; } sf &= ENTCS_PUBLICMASK; // no private updates } while (0); -- 2.39.2