]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Entcs: fix health/armor bar above players not updated on ready-restart
authorterencehill <piuntn@gmail.com>
Fri, 22 Jan 2021 13:53:26 +0000 (14:53 +0100)
committerterencehill <piuntn@gmail.com>
Fri, 22 Jan 2021 13:53:26 +0000 (14:53 +0100)
qcsrc/common/ent_cs.qc

index 777bd417a6d2607a0e252dc3bbc3933b4b9b0462..a6f39e213a79fef4c373dc52304402d2c442afe4 100644 (file)
@@ -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);