Update flora spread

master
Wuzzy 2017-05-29 02:24:40 +02:00
parent e6beda1c1f
commit a027306294
1 changed files with 3 additions and 3 deletions

View File

@ -195,7 +195,7 @@ local function f_flora(itemstring, def)
local groupname = doc.sub.items.get_group_name("flora")
-- Dry shrub rule not complete; flora dies on group:sand except default:sand. But that's okay.
-- The missing nodes will be covered on their own entries by the f_and_dry_shrub factoid.
return S("This block belongs to the @1 group. It a living organism which likes to grow and spread on dirt with grass or dirt with dry grass when it is in light. Spreading will stop when the surrounding area is too crammed with @2 blocks. On silver sand and desert sand, it will wither and die and turn into a dry shrub.", groupname, groupname)
return S("This block belongs to the @1 group. It a living organism which likes to grow and spread on dirt with grass and similar “soil”-type blocks when it is in light. Spreading will stop when the surrounding area is too crammed with @2 blocks. On silver sand and desert sand, it will wither and die and turn into a dry shrub.", groupname, groupname)
else
return ""
end
@ -214,9 +214,9 @@ end
-- soil group
local function f_soil(itemstring, def)
if def.groups.soil == 1 then
return S("This block serves as a soil for saplings. Blocks in the “@1” group will grow into trees on this block.", doc.sub.items.get_group_name("sapling"))
return S("This block serves as a soil for saplings and small plants. Blocks in the “@1” group will grow into trees. Blocks in the “@2” group will spread slowly.", doc.sub.items.get_group_name("sapling"), doc.sub.items.get_group_name("flora"))
elseif def.groups.soil == 2 or def.groups.soil == 3 then
return S("This block serves as a soil for saplings as well as plants grown from seeds. It supports their growth.")
return S("This block serves as a soil for saplings and other small plants as well as plants grown from seeds. It supports their growth.")
else
return ""
end