Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Defaultsettings: Increase client_mapblock_limit to 5000
  • Loading branch information
paramat committed Aug 15, 2015
1 parent 0ba1cf8 commit ee6cad1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion minetest.conf.example
Expand Up @@ -96,7 +96,7 @@
#client_unload_unused_data_timeout = 600
# Maximum number of mapblocks for client to be kept in memory
# Set to -1 for unlimited amount
#client_mapblock_limit = 1000
#client_mapblock_limit = 5000
# Whether to fog out the end of the visible area
#enable_fog = true
# Whether to show the client debug info (has the same effect as hitting F5)
Expand Down
3 changes: 1 addition & 2 deletions src/defaultsettings.cpp
Expand Up @@ -104,7 +104,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("address", "");
settings->setDefault("random_input", "false");
settings->setDefault("client_unload_unused_data_timeout", "600");
settings->setDefault("client_mapblock_limit", "1000");
settings->setDefault("client_mapblock_limit", "5000");
settings->setDefault("enable_fog", "true");
settings->setDefault("fov", "72");
settings->setDefault("view_bobbing", "true");
Expand Down Expand Up @@ -271,7 +271,6 @@ void set_default_settings(Settings *settings)
settings->setDefault("max_clearobjects_extra_loaded_blocks", "4096");
settings->setDefault("time_send_interval", "5");
settings->setDefault("time_speed", "72");
settings->setDefault("year_days", "30");
settings->setDefault("server_unload_unused_data_timeout", "29");
settings->setDefault("max_objects_per_block", "49");
settings->setDefault("server_map_save_interval", "5.3");
Expand Down

0 comments on commit ee6cad1

Please sign in to comment.