]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/miscfunctions.qc
Merge branch 'master' into bones_was_here/q3compat
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / miscfunctions.qc
index a653f4bf1e5ca0af486b06dd58d6f61aafd143a1..34d87b7722909485f5a13349a38ca4cd38725258 100644 (file)
@@ -159,20 +159,6 @@ float PreviewExists(string name)
        return false;
 }
 
-// decolorizes and team colors the player name when needed
-string playername(string thename, float teamid)
-{
-    TC(int, teamid);
-    string t;
-    if (teamplay)
-    {
-        t = Team_ColorCode(teamid);
-        return strcat(t, strdecolorize(thename));
-    }
-    else
-        return strdecolorize(thename);
-}
-
 float cvar_or(string cv, float v)
 {
        string s;