Skip to content

Commit 5757759

Browse files
committed
Floatland biomes: Simplify to grassland
Make the placeholder biomes grassland to make the shape of the floatland terrain more visible.
1 parent b4abb07 commit 5757759

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

mods/default/mapgen.lua

+7-10
Original file line numberDiff line numberDiff line change
@@ -1446,19 +1446,18 @@ end
14461446

14471447
-- Biomes for floatlands
14481448
-- Used when mgv7 'biomerepeat' flag is false
1449-
-- TODO Temporary simple biomes to be developed later
14501449

1451-
function default.register_floatland_biomes(floatland_level, shadow_limit)
1450+
-- TODO Temporary simple biomes to be replaced by special floatland biomes later.
14521451

1453-
-- Coniferous forest
1452+
function default.register_floatland_biomes(floatland_level, shadow_limit)
14541453

14551454
minetest.register_biome({
1456-
name = "floatland_coniferous_forest",
1455+
name = "floatland_grassland",
14571456
--node_dust = "",
14581457
node_top = "default:dirt_with_grass",
14591458
depth_top = 1,
14601459
node_filler = "default:dirt",
1461-
depth_filler = 3,
1460+
depth_filler = 1,
14621461
--node_stone = "",
14631462
--node_water_top = "",
14641463
--depth_water_top = ,
@@ -1472,10 +1471,8 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
14721471
humidity_point = 50,
14731472
})
14741473

1475-
-- Coniferous forest ocean
1476-
14771474
minetest.register_biome({
1478-
name = "floatland_coniferous_forest_ocean",
1475+
name = "floatland_grassland_ocean",
14791476
--node_dust = "",
14801477
node_top = "default:sand",
14811478
depth_top = 1,
@@ -1607,7 +1604,7 @@ local function register_grass_decoration(offset, scale, length)
16071604
},
16081605
biomes = {"grassland", "grassland_dunes", "deciduous_forest",
16091606
"coniferous_forest", "coniferous_forest_dunes",
1610-
"floatland_grassland", "floatland_coniferous_forest"},
1607+
"floatland_grassland"},
16111608
y_min = 1,
16121609
y_max = 31000,
16131610
decoration = "default:grass_" .. length,
@@ -1721,7 +1718,7 @@ function default.register_decorations()
17211718
octaves = 3,
17221719
persist = 0.66
17231720
},
1724-
biomes = {"taiga", "coniferous_forest", "floatland_coniferous_forest"},
1721+
biomes = {"taiga", "coniferous_forest"},
17251722
y_min = 2,
17261723
y_max = 31000,
17271724
schematic = minetest.get_modpath("default") .. "/schematics/pine_tree.mts",

mods/flowers/mapgen.lua

+2-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ local function register_flower(seed, name)
9595
persist = 0.6
9696
},
9797
biomes = {"grassland", "deciduous_forest", "coniferous_forest",
98-
"floatland_coniferous_forest"},
98+
"floatland_grassland"},
9999
y_min = 1,
100100
y_max = 31000,
101101
decoration = "flowers:"..name,
@@ -115,8 +115,7 @@ local function register_mushroom(name)
115115
octaves = 3,
116116
persist = 0.66
117117
},
118-
biomes = {"deciduous_forest", "coniferous_forest",
119-
"floatland_coniferous_forest"},
118+
biomes = {"deciduous_forest", "coniferous_forest"},
120119
y_min = 1,
121120
y_max = 31000,
122121
decoration = "flowers:"..name,

0 commit comments

Comments
 (0)