mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Increase Peer max_packets_per_second (hopefully doesn't break anything)
This commit is contained in:
parent
e1f5227304
commit
98404ad8ea
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ void Peer::reportRTT(float rtt)
|
|||
{
|
||||
if(rtt >= 0.0){
|
||||
if(rtt < 0.01){
|
||||
if(m_max_packets_per_second < 100)
|
||||
if(m_max_packets_per_second < 400)
|
||||
m_max_packets_per_second += 10;
|
||||
} else if(rtt < 0.2){
|
||||
if(m_max_packets_per_second < 100)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue