mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2024-11-11 21:00:22 +01:00
12cfbe3cb5
* add luacheck workflow * get rid of ancient settings in dryplants * toss settings.txt code file * get rid of settings in trunks * Update .github/workflows/luacheck.yml Co-authored-by: SX <50966843+S-S-X@users.noreply.github.com> --------- Co-authored-by: OgelGames <olliverdc28@gmail.com> Co-authored-by: SX <50966843+S-S-X@users.noreply.github.com>
31 lines
801 B
Lua
31 lines
801 B
Lua
-----------------------------------------------------------------------------------------------
|
|
-- Grasses - More Tall Grass 0.0.2
|
|
-----------------------------------------------------------------------------------------------
|
|
-- by Mossmanikin
|
|
|
|
-- Contains code from: biome_lib
|
|
-- Looked at code from: default
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
biome_lib.register_on_generate(
|
|
{
|
|
surface = {
|
|
"default:dirt_with_grass",
|
|
"stoneage:grass_with_silex",
|
|
"sumpf:peat",
|
|
"sumpf:sumpf"
|
|
},
|
|
max_count = 4800,
|
|
rarity = 101 - 75,
|
|
min_elevation = 1, -- above sea level
|
|
plantlife_limit = -0.9,
|
|
check_air = true,
|
|
},
|
|
{ "default:grass_1",
|
|
"default:grass_2",
|
|
"default:grass_3",
|
|
"default:grass_4",
|
|
"default:grass_5"
|
|
}
|
|
)
|