Skip to content

Commit

Permalink
Mgflat: Set blank default spflags. Unhide
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Jan 10, 2016
1 parent 31ac53d commit 3e0ea3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion builtin/settingtypes.txt
Expand Up @@ -936,7 +936,7 @@ mgv7_np_cave2 (Mapgen v7 cave2 noise parameters) noise_params 0, 12, (100, 100,
# Occasional lakes and hills added to the flat world.
# 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.
mgflat_spflags (Mapgen flat flags) flags nolakes,nohills lakes,hills,nolakes,nohills
mgflat_spflags (Mapgen flat flags) flags lakes,hills,,nolakes,nohills

# Y of flat ground.
mgflat_ground_level (Mapgen flat ground level) int 8
Expand Down
4 changes: 2 additions & 2 deletions minetest.conf.example
Expand Up @@ -1187,8 +1187,8 @@
# Occasional lakes and hills added to the flat world.
# 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: lakes, hills, nolakes, nohills
# mgflat_spflags = nolakes,nohills
# type: flags possible values: lakes, hills, , nolakes, nohills
# mgflat_spflags =

# Y of flat ground.
# type: int
Expand Down
2 changes: 1 addition & 1 deletion src/emerge.cpp
Expand Up @@ -106,7 +106,7 @@ MapgenDesc g_reg_mapgens[] = {
{"v5", new MapgenFactoryV5, true},
{"v6", new MapgenFactoryV6, true},
{"v7", new MapgenFactoryV7, true},
{"flat", new MapgenFactoryFlat, false},
{"flat", new MapgenFactoryFlat, true},
{"fractal", new MapgenFactoryFractal, true},
{"singlenode", new MapgenFactorySinglenode, false},
};
Expand Down

0 comments on commit 3e0ea3c

Please sign in to comment.