dreambuilder_game/dryplants/meadowvariation.lua
Vanessa Dannenberg d41791b735 update basic_materials, biome_lib, plantlife modpack,
coloredwood, homedecor, technic, currency, framedglass,
gloopblocks, led_marquee, mesecons, moretrees, nixie_tubes,
pipeworks, plasticbox, prefab_redo, castles, signs_lib,
roads, worldedit

Added license declaration for the modpack itself
2018-11-08 19:27:31 -05:00

26 lines
824 B
Lua

-----------------------------------------------------------------------------------------------
-- Grasses - Meadow Variation 0.0.1
-----------------------------------------------------------------------------------------------
-- by Mossmanikin
-- Contains code from: biome_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.swap_node(right_here, {name="dryplants:grass_short"})
end
biome_lib: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
)