mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 14:01:26 +00:00
ignore svc_achievement server message for quake '2021 release' version.
This commit is contained in:
parent
65c1644849
commit
51b23fa30a
2 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue