]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/ent_cs.qc
Instead of hiding waypoints for eliminated players in CA clientside make so that...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / ent_cs.qc
index da53f68a0f15d52a06d7522566fe062a4047ad4c..71052bd2b7fdbf256aaf2d034ec2490801e9657c 100644 (file)
@@ -73,6 +73,11 @@ MACRO_END
                entity player = this.owner;
                sf |= BIT(0); // assume private
                do {
+                       if (!(IS_PLAYER(player)))
+                       {
+                               sf &= ENTCS_PUBLICMASK; // no private updates
+                               break;
+                       }
                        if (radar_showennemies) break;
                        if (SAME_TEAM(to, player)) break;
                        if (!(IS_PLAYER(to) || to.caplayer) && time > game_starttime) break;