From: bones_was_here Date: Sun, 2 Jan 2022 01:18:01 +0000 (+1000) Subject: Simplify updateCheck() X-Git-Tag: xonotic-v0.8.5~97^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1786662aa13a332d95874af507b8d825d5411f0d;p=xonotic%2Fxonotic-data.pk3dir.git Simplify updateCheck() --- diff --git a/qcsrc/menu/xonotic/util.qc b/qcsrc/menu/xonotic/util.qc index 63eb27abf..82f0efee9 100644 --- a/qcsrc/menu/xonotic/util.qc +++ b/qcsrc/menu/xonotic/util.qc @@ -475,15 +475,8 @@ void updateCheck() if(!_Nex_ExtResponseSystem_Queried) { _Nex_ExtResponseSystem_Queried = 1; - float startcnt; - string uri; - - cvar_set("cl_startcount", ftos(startcnt = cvar("cl_startcount") + 1)); - - // for privacy, munge the start count a little - startcnt = floor((floor(startcnt / 10) + random()) * 10); - uri = sprintf("http://update.xonotic.org/checkupdate.txt?version=%s&cnt=%d", uri_escape(cvar_string("g_xonoticversion")), startcnt); - uri_get(uri, URI_GET_UPDATENOTIFICATION); + cvar_set("cl_startcount", ftos(cvar("cl_startcount") + 1)); + uri_get("http://update.xonotic.org/checkupdate.txt", URI_GET_UPDATENOTIFICATION); } if(_Nex_ExtResponseSystem_PacksStep > 0)