1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-01-23 08:20:21 +01:00

Added cherry trees in mapgen

This commit is contained in:
Gael-de-Sailly 2015-07-09 12:36:08 +02:00
parent 52715b167d
commit 3a935ce1e4

View File

@ -781,3 +781,19 @@ end)
default.register_ores()
farming.register_mgv6_decorations()
-- cherry tree
minetest.register_decoration({
deco_type = "simple",
place_on = "default:dirt_with_grass",
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.005,
spread = {x=100, y=100, z=100},
seed = 278,
octaves = 2,
persist = 0.7
},
decoration = "default:mg_cherry_sapling",
height = 1,
})