diff options
author | Wuzzy <almikes@aol.com> | 2017-05-29 02:24:40 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2017-05-29 02:24:40 +0200 |
commit | a0273062941238107ab62a334fca8fdc5831155c (patch) | |
tree | 823a1f283722ae02078fde773efa52c85d47e09d /init.lua | |
parent | e6beda1c1fd5d6255e7b398d4ca40b0924f091bd (diff) |
Update flora spread
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |