Skip to content

Commit 39fd4da

Browse files
committedApr 13, 2015
Conf.example: Update, fix and improve mapgen flags docs
Remove dynamic weather year parameter
1 parent 8c688bf commit 39fd4da

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed
 

‎minetest.conf.example

+16-14
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,6 @@
409409
# Controls length of day/night cycle.
410410
# 72=20min, 360=4min, 1=24hour, 0=day/night/whatever stays unchanged.
411411
#time_speed = 72
412-
# Length of year in days for seasons change.
413-
# With default time_speed 365 days = 5 real days for year, 30 days = 10 real hours.
414-
#year_days = 30
415412
#server_unload_unused_data_timeout = 29
416413
# Maximum number of statically stored objects in a block
417414
#max_objects_per_block = 49
@@ -488,21 +485,27 @@
488485
# Global map generation attributes. Currently supported: trees, caves, flat, dungeons, light.
489486
# Flags that are not specified in the flag string are not modified from the default.
490487
# To explicitly turn off a flag, prepend "no" to the beginning, e.g. nolight.
491-
#mg_flags = trees, caves
488+
#mg_flags = trees, caves, light
489+
# Enable/disable floating dungeons and dungeon slices
490+
#enable_floating_dungeons = true
491+
492492
# Map generation attributes specific to Mapgen V6.
493-
# Currently supported: biomeblend, jungles, mudflow.
494-
#mgv6_spflags = biomeblend, jungles, mudflow
493+
# Currently supported: jungles, biomeblend, mudflow, snowbiomes.
494+
# When snowbiomes are enabled jungles are enabled, the jungles flag is ignored.
495+
#mgv6_spflags = biomeblend, mudflow
495496
# Controls size of deserts and beaches in Mapgen V6
496497
#mgv6_freq_desert = 0.45
497498
#mgv6_freq_beach = 0.15
498-
# Enable/disable floating dungeons and dungeon slices
499-
#enable_floating_dungeons = true
499+
500+
# Map generation attributes specific to Mapgen V7.
501+
# Currently supported: mountains, ridges.
502+
#mgv7_spflags = mountains, ridges
500503

501504
# Perlin noise attributes for different map generation parameters.
502505
# Noise parameters can be specified as a set of positional values:
503506
# Offset, scale, (spread factors), seed offset, number of octaves, persistence, lacunarity.
504507
#mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
505-
# Or the new group format can be used instead:
508+
# Or the new group format can be used instead, for example:
506509
#mgv6_np_terrain_base = {
507510
# offset = -4
508511
# scale = 20
@@ -517,6 +520,10 @@
517520
# Mgv5 uses eased noise for np_ground so this is shown in group format,
518521
# other noise parameters are shown in positional format to save space.
519522

523+
# Noise parameters for biome API temperature and humidity
524+
#mg_biome_np_heat = 50, 50, (500, 500, 500), 5349, 3, 0.5, 2.0
525+
#mg_biome_np_humidity = 50, 50, (500, 500, 500), 842, 3, 0.5, 2.0
526+
520527
#mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0
521528
#mgv5_np_factor = 0, 1, (250, 250, 250), 920381, 3, 0.45, 2.0
522529
#mgv5_np_height = 0, 10, (250, 250, 250), 84174, 4, 0.5, 2.0
@@ -533,7 +540,6 @@
533540
# flags = "eased"
534541
#}
535542

536-
#mgv6_spflags = biomeblend, jungles, mudflow
537543
#mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
538544
#mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 2.0
539545
#mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2.0
@@ -546,7 +552,6 @@
546552
#mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66, 2.0
547553
#mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45, 2.0
548554

549-
#mgv7_spflags = mountains, ridges
550555
#mgv7_np_terrain_base = 4, 70, (300, 300, 300), 82341, 6, 0.7, 2.0
551556
#mgv7_np_terrain_alt = 4, 25, (600, 600, 600), 5934, 5, 0.6, 2.0
552557
#mgv7_np_terrain_persist = 0.6, 0.1, (500, 500, 500), 539, 3, 0.6, 2.0
@@ -559,6 +564,3 @@
559564
#mgv7_np_cave1 = 0, 12, (100, 100, 100), 52534, 4, 0.5, 2.0
560565
#mgv7_np_cave2 = 0, 12, (100, 100, 100), 10325, 4, 0.5, 2.0
561566

562-
# Noise parameters for biome API temperature and humidity
563-
#mg_biome_np_heat = 50, 50, (500, 500, 500), 5349, 3, 0.5, 2.0
564-
#mg_biome_np_humidity = 50, 50, (500, 500, 500), 842, 3, 0.5, 2.0

0 commit comments

Comments
 (0)
Please sign in to comment.