From: terencehill Date: Fri, 22 Jan 2021 13:53:26 +0000 (+0100) Subject: Entcs: fix health/armor bar above players not updated on ready-restart X-Git-Tag: xonotic-v0.8.5~559^2~7 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ac29cc375dd6ac51bce3cec39bffcab2a250785e;p=xonotic%2Fxonotic-data.pk3dir.git Entcs: fix health/armor bar above players not updated on ready-restart --- 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);