mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Vegetate moss spreading with Azaleas
Replaces the Azalea Leaves for Azaleas when using bone meal to spread moss.
This commit is contained in:
parent
d80c27e8ca
commit
d065d84259
1 changed files with 4 additions and 4 deletions
|
@ -5,8 +5,8 @@ local S = minetest.get_translator(modname)
|
|||
-- Tall Grass: 52.08%
|
||||
-- Moss Carpet: 26.04%
|
||||
-- Double Grass: 10.42%
|
||||
-- Azalea Leaves: 7.29%
|
||||
-- Flowering Azalea Leaves: 4.17%
|
||||
-- Azalea: 7.29%
|
||||
-- Flowering Azalea: 4.17%
|
||||
local function random_moss_vegetation()
|
||||
local x = math.random()
|
||||
if x < 0.5208 then
|
||||
|
@ -16,9 +16,9 @@ local function random_moss_vegetation()
|
|||
elseif x < 0.8854 then
|
||||
return "mcl_flowers:double_grass"
|
||||
elseif x < 0.9583 then
|
||||
return "mcl_lush_caves:azalea_leaves"
|
||||
return "mcl_lush_caves:azalea"
|
||||
else
|
||||
return "mcl_lush_caves:azalea_leaves_flowering"
|
||||
return "mcl_lush_caves:azalea_flowering"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue