]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/ent_cs.qc
Fix #2195: "Clan Arena: own name tag displayed over teammate's head when a round...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / ent_cs.qc
index f4ef79eda495f5e064ed81146b7e0fb24dacca9c..c0a44b111477e1d688d486b15dd6836cc70a8827 100644 (file)
@@ -146,6 +146,10 @@ ENTCS_PROP(FRAGS, true, frags, ENTCS_SET_NORMAL,
        { WriteShort(chan, ent.frags); },
        { ent.frags = ReadShort(); })
 
+ENTCS_PROP(SOLID, true, solid, ENTCS_SET_NORMAL,
+       { WriteByte(chan, ent.solid); },
+       { ent.solid = ReadByte(); })
+
 #ifdef SVQC
 
        int ENTCS_PUBLICMASK = 0;