Skip to content

Commit

Permalink
Merge pull request #299 from Calinou/increase-maxpackets-snaps
Browse files Browse the repository at this point in the history
Increase default `cl_maxpackets` to 125
  • Loading branch information
ec- authored Oct 19, 2024
2 parents 2efc3b5 + 734cea5 commit 930538d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/client/cl_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ void CL_InitInput( void ) {
cl_anglespeedkey = Cvar_Get( "cl_anglespeedkey", "1.5", 0 );
Cvar_SetDescription( cl_anglespeedkey, "Set the speed that the direction keys (not mouse) change the view angle." );

cl_maxpackets = Cvar_Get ("cl_maxpackets", "60", CVAR_ARCHIVE );
cl_maxpackets = Cvar_Get ("cl_maxpackets", "125", CVAR_ARCHIVE );
Cvar_CheckRange( cl_maxpackets, "15", "125", CV_INTEGER );
Cvar_SetDescription( cl_maxpackets, "Set how many client packets are sent to the server per second, can't exceed \\com_maxFPS." );
cl_packetdup = Cvar_Get( "cl_packetdup", "1", CVAR_ARCHIVE_ND );
Expand Down

0 comments on commit 930538d

Please sign in to comment.