Skip to content

Commit f290d01

Browse files
Wuzzy2paramat
authored andcommittedFeb 14, 2019
Update minetest.conf.example, settings strings and locale files (#8230)
1 parent a8311ad commit f290d01

39 files changed

+14306
-12838
lines changed
 

Diff for: ‎minetest.conf.example

+36-16
Original file line numberDiff line numberDiff line change
@@ -1091,6 +1091,11 @@
10911091
# type: int
10921092
# max_out_chat_queue_size = 20
10931093

1094+
# Enable register confirmation when connecting to server.
1095+
# If disabled, new account will be registered automatically.
1096+
# type: bool
1097+
# enable_register_confirmation = true
1098+
10941099
## Advanced
10951100

10961101
# Timeout for client to remove unused map data from memory.
@@ -1291,7 +1296,7 @@
12911296
# to maintain active objects up to this distance in the direction the
12921297
# player is looking. (This can avoid mobs suddenly disappearing from view)
12931298
# type: int
1294-
# active_object_send_range_blocks = 3
1299+
# active_object_send_range_blocks = 4
12951300

12961301
# The radius of the volume of blocks around every player that is subject to the
12971302
# active block stuff, stated in mapblocks (16 nodes).
@@ -1303,7 +1308,7 @@
13031308

13041309
# From how far blocks are sent to clients, stated in mapblocks (16 nodes).
13051310
# type: int
1306-
# max_block_send_distance = 9
1311+
# max_block_send_distance = 10
13071312

13081313
# Maximum number of forceloaded mapblocks.
13091314
# type: int
@@ -1459,9 +1464,10 @@
14591464
# type: bool
14601465
# server_side_occlusion_culling = true
14611466

1462-
# Restricts the access of certain client-side functions on servers
1463-
# Combine these byteflags below to restrict client-side features:
1464-
# LOAD_CLIENT_MODS: 1 (disable client mods loading)
1467+
# Restricts the access of certain client-side functions on servers.
1468+
# Combine the byteflags below to restrict client-side features, or set to 0
1469+
# for no restrictions:
1470+
# LOAD_CLIENT_MODS: 1 (disable loading client-provided mods)
14651471
# CHAT_MESSAGES: 2 (disable send_chat_message call client-side)
14661472
# READ_ITEMDEFS: 4 (disable get_item_def call client-side)
14671473
# READ_NODEDEFS: 8 (disable get_node_def call client-side)
@@ -1605,9 +1611,8 @@
16051611
# - Full: Multiple singleplayer worlds, game choice, texture pack chooser, etc.
16061612
# - Simple: One singleplayer world, no game or texture pack choosers. May be
16071613
# necessary for smaller screens.
1608-
# - Auto: Simple on Android, full on everything else.
1609-
# type: enum values: auto, full, simple
1610-
# main_menu_style = auto
1614+
# type: enum values: full, simple
1615+
# main_menu_style = full
16111616

16121617
# Replaces the default main menu with a custom one.
16131618
# type: string
@@ -1637,7 +1642,7 @@
16371642

16381643
# From how far blocks are generated for clients, stated in mapblocks (16 nodes).
16391644
# type: int
1640-
# max_block_generate_distance = 6
1645+
# max_block_generate_distance = 8
16411646

16421647
# Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).
16431648
# Only mapchunks completely within the mapgen limit are generated.
@@ -3001,18 +3006,33 @@
30013006
# emergequeue_limit_generate = 64
30023007

30033008
# Number of emerge threads to use.
3004-
# Make this field blank or 0, or increase this number to use multiple threads.
3005-
# On multiprocessor systems, this will improve mapgen speed greatly at the cost
3006-
# of slightly buggy caves.
3009+
# Empty or 0 value:
3010+
# - Automatic selection. The number of emerge threads will be
3011+
# - 'number of processors - 2', with a lower limit of 1.
3012+
# Any other value:
3013+
# - Specifies the number of emerge threads, with a lower limit of 1.
3014+
# Warning: Increasing the number of emerge threads increases engine mapgen
3015+
# speed, but this may harm game performance by interfering with other
3016+
# processes, especially in singleplayer and/or when running Lua code in
3017+
# 'on_generated'.
3018+
# For many users the optimum setting may be '1'.
30073019
# type: int
30083020
# num_emerge_threads = 0
30093021

30103022
#
3011-
# Content Store
3023+
# Online Content Repository
30123024
#
30133025

3014-
# Show packages in the content store that do not qualify as 'free software'
3026+
# The URL for the content repository
3027+
# type: string
3028+
# contentdb_url = https://content.minetest.net
3029+
3030+
# Comma-separated list of flags to hide in the content repository.
3031+
# "nonfree" can be used to hide packages which do not qualify as 'free software',
30153032
# as defined by the Free Software Foundation.
3016-
# type: bool
3017-
# show_nonfree_packages = false
3033+
# You can also specify content ratings.
3034+
# These flags are independent from Minetest versions,
3035+
# so see a full list at https://content.minetest.net/help/content_flags/
3036+
# type: string
3037+
# contentdb_flag_blacklist = nonfree, desktop_default
30183038

0 commit comments

Comments
 (0)
Please sign in to comment.