Skip to content

Commit 6f32507

Browse files
committedMar 11, 2016
Documentation: Clarify global and mapgen-specific mapgen flags
1 parent f627ef3 commit 6f32507

File tree

2 files changed

+42
-20
lines changed

2 files changed

+42
-20
lines changed
 

‎builtin/settingtypes.txt

+21-10
Original file line numberDiff line numberDiff line change
@@ -819,8 +819,10 @@ map_generation_limit (Map generation limit) int 31000 0 31000
819819
# Global map generation attributes.
820820
# In Mapgen v6 the 'decorations' flag controls all decorations except trees
821821
# and junglegrass, in all other mapgens this flag controls all decorations.
822+
# The default flags set in the engine are: caves, light, decorations
823+
# The flags string modifies the engine defaults.
822824
# Flags that are not specified in the flag string are not modified from the default.
823-
# Flags starting with "no" are used to explicitly disable them.
825+
# Flags starting with 'no' are used to explicitly disable them.
824826
mg_flags (Mapgen flags) flags caves,dungeons,light,decorations caves,dungeons,light,decorations,nocaves,nodungeons,nolight,nodecorations
825827

826828
[**Advanced]
@@ -875,9 +877,11 @@ mgv5_np_cave2 (Mapgen v5 cave2 noise parameters) noise_params 0, 12, (50, 50, 50
875877
[***Mapgen v6]
876878

877879
# Map generation attributes specific to Mapgen v6.
878-
# When snowbiomes are enabled jungles are enabled and the jungles flag is ignored.
880+
# When snowbiomes are enabled jungles are automatically enabled, the 'jungles' flag is ignored.
881+
# The default flags set in the engine are: biomeblend, mudflow
882+
# The flags string modifies the engine defaults.
879883
# Flags that are not specified in the flag string are not modified from the default.
880-
# Flags starting with "no" are used to explicitly disable them.
884+
# Flags starting with 'no' are used to explicitly disable them.
881885
mgv6_spflags (Mapgen v6 flags) flags jungles,biomeblend,mudflow,snowbiomes,trees jungles,biomeblend,mudflow,snowbiomes,flat,trees,nojungles,nobiomeblend,nomudflow,nosnowbiomes,noflat,notrees
882886

883887
# Controls size of deserts and beaches in Mapgen v6.
@@ -900,9 +904,11 @@ mgv6_np_apple_trees (Mapgen v6 apple trees noise parameters) noise_params 0, 1,
900904
[***Mapgen v7]
901905

902906
# Map generation attributes specific to Mapgen v7.
903-
# 'ridges' are the rivers.
907+
# The 'ridges' flag controls the rivers.
908+
# The default flags set in the engine are: mountains, ridges
909+
# The flags string modifies the engine defaults.
904910
# Flags that are not specified in the flag string are not modified from the default.
905-
# Flags starting with "no" are used to explicitly disable them.
911+
# Flags starting with 'no' are used to explicitly disable them.
906912
mgv7_spflags (Mapgen v7 flags) flags mountains,ridges mountains,ridges,nomountains,noridges
907913

908914
mgv7_np_terrain_base (Mapgen v7 terrain base noise parameters) noise_params 4, 70, (600, 600, 600), 82341, 5, 0.6, 2.0
@@ -920,9 +926,11 @@ mgv7_np_cave2 (Mapgen v7 cave2 noise parameters) noise_params 0, 12, (100, 100,
920926
[***Mapgen flat]
921927

922928
# Map generation attributes specific to Mapgen flat.
923-
# Occasional lakes and hills added to the flat world.
929+
# Occasional lakes and hills can be added to the flat world.
930+
# The default flags set in the engine are: none
931+
# The flags string modifies the engine defaults.
924932
# Flags that are not specified in the flag string are not modified from the default.
925-
# Flags starting with "no" are used to explicitly disable them.
933+
# Flags starting with 'no' are used to explicitly disable them.
926934
mgflat_spflags (Mapgen flat flags) flags lakes,hills,,nolakes,nohills
927935

928936
# Y of flat ground.
@@ -1027,10 +1035,13 @@ mgfractal_np_cave2 (Mapgen fractal cave2 noise parameters) noise_params 0, 12, (
10271035
[****General]
10281036

10291037
# Map generation attributes specific to Mapgen Valleys.
1038+
# 'altitude_chill' makes higher elevations colder, which may cause biome issues.
1039+
# 'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool,
1040+
# it may interfere with delicately adjusted biomes.
1041+
# The default flags set in the engine are: altitude_chill, humid_rivers
1042+
# The flags string modifies the engine defaults.
10301043
# Flags that are not specified in the flag string are not modified from the default.
1031-
# Flags starting with "no" are used to explicitly disable them.
1032-
# "altitude_chill" makes higher elevations colder, which may cause biome issues.
1033-
# "humid_rivers" modifies the humidity around rivers and in areas where water would tend to pool. It may interfere with delicately adjusted biomes.
1044+
# Flags starting with 'no' are used to explicitly disable them.
10341045
mg_valleys_spflags (Valleys C Flags) flags altitude_chill,humid_rivers altitude_chill,noaltitude_chill,humid_rivers,nohumid_rivers
10351046

10361047
# The altitude at which temperature drops by 20C

‎minetest.conf.example

+21-10
Original file line numberDiff line numberDiff line change
@@ -1009,8 +1009,10 @@
10091009
# Global map generation attributes.
10101010
# In Mapgen v6 the 'decorations' flag controls all decorations except trees
10111011
# and junglegrass, in all other mapgens this flag controls all decorations.
1012+
# The default flags set in the engine are: caves, light, decorations
1013+
# The flags string modifies the engine defaults.
10121014
# Flags that are not specified in the flag string are not modified from the default.
1013-
# Flags starting with "no" are used to explicitly disable them.
1015+
# Flags starting with 'no' are used to explicitly disable them.
10141016
# type: flags possible values: caves, dungeons, light, decorations, nocaves, nodungeons, nolight, nodecorations
10151017
# mg_flags = caves,dungeons,light,decorations
10161018

@@ -1077,9 +1079,11 @@
10771079
#### Mapgen v6
10781080

10791081
# Map generation attributes specific to Mapgen v6.
1080-
# When snowbiomes are enabled jungles are enabled and the jungles flag is ignored.
1082+
# When snowbiomes are enabled jungles are automatically enabled, the 'jungles' flag is ignored.
1083+
# The default flags set in the engine are: biomeblend, mudflow
1084+
# The flags string modifies the engine defaults.
10811085
# Flags that are not specified in the flag string are not modified from the default.
1082-
# Flags starting with "no" are used to explicitly disable them.
1086+
# Flags starting with 'no' are used to explicitly disable them.
10831087
# type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, trees, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat, notrees
10841088
# mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes,trees
10851089

@@ -1127,9 +1131,11 @@
11271131
#### Mapgen v7
11281132

11291133
# Map generation attributes specific to Mapgen v7.
1130-
# 'ridges' are the rivers.
1134+
# The 'ridges' flag controls the rivers.
1135+
# The default flags set in the engine are: mountains, ridges
1136+
# The flags string modifies the engine defaults.
11311137
# Flags that are not specified in the flag string are not modified from the default.
1132-
# Flags starting with "no" are used to explicitly disable them.
1138+
# Flags starting with 'no' are used to explicitly disable them.
11331139
# type: flags possible values: mountains, ridges, nomountains, noridges
11341140
# mgv7_spflags = mountains,ridges
11351141

@@ -1169,9 +1175,11 @@
11691175
#### Mapgen flat
11701176

11711177
# Map generation attributes specific to Mapgen flat.
1172-
# Occasional lakes and hills added to the flat world.
1178+
# Occasional lakes and hills can be added to the flat world.
1179+
# The default flags set in the engine are: none
1180+
# The flags string modifies the engine defaults.
11731181
# Flags that are not specified in the flag string are not modified from the default.
1174-
# Flags starting with "no" are used to explicitly disable them.
1182+
# Flags starting with 'no' are used to explicitly disable them.
11751183
# type: flags possible values: lakes, hills, , nolakes, nohills
11761184
# mgflat_spflags =
11771185

@@ -1303,10 +1311,13 @@
13031311
##### General
13041312

13051313
# Map generation attributes specific to Mapgen Valleys.
1314+
# 'altitude_chill' makes higher elevations colder, which may cause biome issues.
1315+
# 'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool,
1316+
# it may interfere with delicately adjusted biomes.
1317+
# The default flags set in the engine are: altitude_chill, humid_rivers
1318+
# The flags string modifies the engine defaults.
13061319
# Flags that are not specified in the flag string are not modified from the default.
1307-
# Flags starting with "no" are used to explicitly disable them.
1308-
# "altitude_chill" makes higher elevations colder, which may cause biome issues.
1309-
# "humid_rivers" modifies the humidity around rivers and in areas where water would tend to pool. It may interfere with delicately adjusted biomes.
1320+
# Flags starting with 'no' are used to explicitly disable them.
13101321
# type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers
13111322
# mg_valleys_spflags = altitude_chill,humid_rivers
13121323

0 commit comments

Comments
 (0)
Please sign in to comment.