1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Default max_simultaneous_block_sends_server_total to 2 to make network not cough too much on the fixed block sending code

This commit is contained in:
Perttu Ahola 2011-10-19 19:34:47 +03:00
parent ed870a7237
commit b6fcbc5fba
2 changed files with 2 additions and 2 deletions

View file

@ -100,7 +100,7 @@ void set_default_settings(Settings *settings)
//settings->setDefault("max_simultaneous_block_sends_per_client", "1");
// This causes frametime jitter on client side, or does it?
settings->setDefault("max_simultaneous_block_sends_per_client", "2");
settings->setDefault("max_simultaneous_block_sends_server_total", "8");
settings->setDefault("max_simultaneous_block_sends_server_total", "2");
settings->setDefault("max_block_send_distance", "7");
settings->setDefault("max_block_generate_distance", "5");
settings->setDefault("time_send_interval", "20");