]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Simplify updateCheck()
authorbones_was_here <bones_was_here@xa.org.au>
Sun, 2 Jan 2022 01:18:01 +0000 (11:18 +1000)
committerbones_was_here <bones_was_here@xa.org.au>
Tue, 29 Mar 2022 21:59:24 +0000 (07:59 +1000)
qcsrc/menu/xonotic/util.qc

index 63eb27abf7b4ffba689280b1f4c83f4faa8357f5..82f0efee9b36908d397a9ed86ab3a60cd06633a0 100644 (file)
@@ -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)