diff options
author | paramat <mat.gregory@virginmedia.com> | 2015-11-15 11:55:45 +0000 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2015-11-21 00:10:08 +0000 |
commit | d7bbe81726f46b46d88b188298155dc7519ae1a4 (patch) | |
tree | 631d5d46286b55acae1dd8d8e46c2b9d00f3f774 /minetest.conf.example | |
parent | 4fd394b657fbaf6f1966024553a45c4e5401542a (diff) | |
download | minetest-d7bbe81726f46b46d88b188298155dc7519ae1a4.tar.gz minetest-d7bbe81726f46b46d88b188298155dc7519ae1a4.tar.bz2 minetest-d7bbe81726f46b46d88b188298155dc7519ae1a4.zip |
Mapgen: Add global 'decorations' flag
Flag is set by default in MapgenParams
The global 'trees' flag remains but is now
undocumented and unset by default in MapgenParams
Add mgv6_spflag 'trees' set by default in
defaultsettings.cpp to affect new worlds only
This is automatically backwards
compatible for existing worlds
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index 39f80bf68..d8534a0f5 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -1021,11 +1021,12 @@ # map_generation_limit = 31000 # Global map generation attributes. -# The 'trees' flag only has effect in mgv6. +# In Mapgen v6 the 'decorations' flag controls all decorations except trees +# and junglegrass, in all other mapgens this flag controls all decorations. # Flags that are not specified in the flag string are not modified from the default. # Flags starting with "no" are used to explicitly disable them. -# type: flags possible values: trees, caves, dungeons, light, notrees, nocaves, nodungeons, nolight -# mg_flags = trees,caves,dungeons,light +# type: flags possible values: caves, dungeons, light, decorations, nocaves, nodungeons, nolight, nodecorations +# mg_flags = caves,dungeons,light,decorations ### Advanced @@ -1093,8 +1094,8 @@ # When snowbiomes are enabled jungles are enabled and the jungles flag is ignored. # Flags that are not specified in the flag string are not modified from the default. # Flags starting with "no" are used to explicitly disable them. -# type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat -# mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes +# type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, trees, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat, notrees +# mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes,trees # Controls size of deserts and beaches in Mapgen v6. # When snowbiomes are enabled 'mgv6_freq_desert' is ignored. |