mirror of
https://github.com/minetest/minetest.git
synced 2024-11-10 01:33:46 +01:00
Increase Peer max_packets_per_second (hopefully doesn't break anything)
This commit is contained in:
parent
e1f5227304
commit
98404ad8ea
@ -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…
Reference in New Issue
Block a user