* sv_minRate (from R1CH)
* [cl|sv]_packetdelay (from tjw)
This commit is contained in:
parent
394c09fa26
commit
7d657ba62f
8 changed files with 90 additions and 2 deletions
|
@ -901,6 +901,12 @@ void SV_WriteDownloadToClient( client_t *cl , msg_t *msg )
|
|||
rate = sv_maxRate->integer;
|
||||
}
|
||||
}
|
||||
if ( sv_minRate->integer ) {
|
||||
if ( sv_minRate->integer < 1000 )
|
||||
Cvar_Set( "sv_minRate", "1000" );
|
||||
if ( sv_minRate->integer > rate )
|
||||
rate = sv_minRate->integer;
|
||||
}
|
||||
|
||||
if (!rate) {
|
||||
blockspersnap = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue