From e137b61382d3a40c6d49be8c8c27506cfe6ad7aa Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 22 Jan 2017 07:24:15 +1000 Subject: [PATCH] Fix an oddity with strings (possible cause of a stats related crash) --- qcsrc/common/playerstats.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/playerstats.qc b/qcsrc/common/playerstats.qc index 74585a300..2a15b36d1 100644 --- a/qcsrc/common/playerstats.qc +++ b/qcsrc/common/playerstats.qc @@ -22,7 +22,7 @@ void PlayerStats_GameReport_AddPlayer(entity e) if((PS_GR_OUT_DB < 0) || (e.playerstats_id)) { return; } // set up player identification - string s = string_null; + string s = ""; if((e.crypto_idfp != "") && (e.cvar_cl_allow_uidtracking == 1)) { s = e.crypto_idfp; } -- 2.39.2