Skip to content

Commit

Permalink
Revert "Increase limit for simultaneous blocks sent per client and th…
Browse files Browse the repository at this point in the history
…e meshgen cache."

This reverts commit 2f6393f.
  • Loading branch information
sfan5 authored and lhofhansl committed Dec 5, 2020
1 parent 08c9d1a commit 07e0b52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions builtin/settingtypes.txt
Expand Up @@ -747,7 +747,7 @@ mesh_generation_interval (Mapblock mesh generation delay) int 0 0 50
# Size of the MapBlock cache of the mesh generator. Increasing this will
# increase the cache hit %, reducing the data being copied from the main
# thread, thus reducing jitter.
meshgen_block_cache_size (Mapblock mesh generator's MapBlock cache size in MB) int 40 0 1000
meshgen_block_cache_size (Mapblock mesh generator's MapBlock cache size in MB) int 20 0 1000

# Enables minimap.
enable_minimap (Minimap) bool true
Expand Down Expand Up @@ -1037,7 +1037,7 @@ ipv6_server (IPv6 server) bool false
# Maximum number of blocks that are simultaneously sent per client.
# The maximum total count is calculated dynamically:
# max_total = ceil((#clients + max_users) * per_client / 4)
max_simultaneous_block_sends_per_client (Maximum simultaneous block sends per client) int 128
max_simultaneous_block_sends_per_client (Maximum simultaneous block sends per client) int 40

# To reduce lag, block transfers are slowed down when a player is building something.
# This determines how long they are slowed down after placing or removing a node.
Expand Down
4 changes: 2 additions & 2 deletions src/defaultsettings.cpp
Expand Up @@ -42,7 +42,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("mute_sound", "false");
settings->setDefault("enable_mesh_cache", "false");
settings->setDefault("mesh_generation_interval", "0");
settings->setDefault("meshgen_block_cache_size", "40");
settings->setDefault("meshgen_block_cache_size", "20");
settings->setDefault("enable_vbo", "true");
settings->setDefault("free_move", "false");
settings->setDefault("pitch_move", "false");
Expand Down Expand Up @@ -343,7 +343,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("port", "30000");
settings->setDefault("strict_protocol_version_checking", "false");
settings->setDefault("player_transfer_distance", "0");
settings->setDefault("max_simultaneous_block_sends_per_client", "128");
settings->setDefault("max_simultaneous_block_sends_per_client", "40");
settings->setDefault("time_send_interval", "5");

settings->setDefault("default_game", "minetest");
Expand Down

0 comments on commit 07e0b52

Please sign in to comment.