ignore svc_achievement server message for quake '2021 release' version.

This commit is contained in:
Andrei Drexler 2021-08-22 18:55:02 +03:00 committed by Ozkan Sezer
parent 65c1644849
commit 51b23fa30a
2 changed files with 10 additions and 0 deletions

View file

@ -1238,6 +1238,12 @@ void CL_ParseServerMessage (void)
CL_ParseStaticSound (2);
break;
//johnfitz
//used by the 2021 rerelease
case svc_achievement:
str = MSG_ReadString();
Con_DPrintf("Ignoring svc_achievement (%s)\n", str);
break;
}
lastcmd = cmd; //johnfitz

View file

@ -201,6 +201,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define svc_spawnstaticsound2 44 // [coord3] [short] samp [byte] vol [byte] aten
//johnfitz
//used by the 2021 rerelease
//Note: same value as svcdp_effect!
#define svc_achievement 52 // [string] id
//
// client to server
//