1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-09 22:30:26 +02:00
server-nalc/mods/plantlife_modpack/dryplants/meadowvariation.lua
Ombridride e6ea287709 MAJ plantlife_modpack
(garde les modifs antérieur sur les « mushrooms » et sur les bugfixs
liés au mod « areas »)
2014-12-15 00:41:13 +01:00

27 lines
861 B
Lua

-----------------------------------------------------------------------------------------------
-- Grasses - Meadow Variation 0.0.1
-----------------------------------------------------------------------------------------------
-- by Mossmanikin
-- License (everything): WTFPL
-- Contains code from: plants_lib
-- Looked at code from: default
-----------------------------------------------------------------------------------------------
abstract_dryplants.grow_grass_variation = function(pos)
local right_here = {x=pos.x, y=pos.y, z=pos.z}
minetest.set_node(right_here, {name="dryplants:grass_short"})
end
plantslib:register_generate_plant({
surface = {
"default:dirt_with_grass",
},
max_count = 4800,
rarity = 25,
min_elevation = 1, -- above sea level
plantlife_limit = -0.9,
},
abstract_dryplants.grow_grass_variation
)