Skip to content

Commit

Permalink
Default/mapgen: Add gravel beach in Tundra
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Jan 29, 2016
1 parent f4512cb commit a4e144e
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion mods/default/mapgen.lua
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,24 @@ function default.register_biomes()
humidity_point = 35,
})

minetest.register_biome({
name = "tundra_beach",
--node_dust = "",
node_top = "default:gravel",
depth_top = 1,
node_filler = "default:gravel",
depth_filler = 2,
--node_stone = "",
--node_water_top = "",
--depth_water_top = ,
--node_water = "",
--node_river_water = "",
y_min = -3,
y_max = 1,
heat_point = 15,
humidity_point = 35,
})

minetest.register_biome({
name = "tundra_ocean",
--node_dust = "",
Expand All @@ -391,7 +409,7 @@ function default.register_biomes()
--node_water = "",
--node_river_water = "",
y_min = -112,
y_max = 1,
y_max = -4,
heat_point = 15,
humidity_point = 35,
})
Expand Down

0 comments on commit a4e144e

Please sign in to comment.