diff options
author | Wuzzy <almikes@aol.com> | 2016-08-01 00:41:05 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-08-01 00:41:05 +0200 |
commit | 00b9239169bac8a9006605cbf5a505b9359221a0 (patch) | |
tree | 73ef3f47dd5a6bb7f46294c28e36b65c439f6cc7 /init.lua | |
parent | 195d769a1b50fcdd42b4e26d315f94a1cf9fa440 (diff) |
Minor Flora updates
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -4,15 +4,12 @@ local groupdefs = { ["dye"] = "Dyes", ["wheat"] = "Wheat", ["stick"] = "Sticks", - ["wall"] = "Walls", ["wool"] = "Wool", ["sand"] = "Sand", ["wood"] = "Wood", ["stone"] = "Stone", ["tree"] = "Tree Trunks", ["leaves"] = "Leaves and Needles", - ["water"] = "Water", - ["lava"] = "Lava", ["flower"] = "Flowers", ["sapling"] = "Saplings", } @@ -264,13 +261,13 @@ doc.new_category("nodes", { end if data.def.groups.flora == 1 then - formstring = formstring .. "This block is a living organism which likes to grow and spread on dirt with grass or dirt with dry grass when it is in light. On desert sand, it will wither and die and turn into a dry shrub.\n" + formstring = formstring .. "This block belongs to the Flora 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. On desert sand, it will wither and die and turn into a dry shrub.\n" end if data.def.groups.soil == 1 then - formstring = formstring .. "This block is natural soil for wild plants such as grass, mushrooms or and supports their growth and spreading.\n" + formstring = formstring .. "This block is natural soil. It supports the spreading of blocks belonging to the Flora group and the growth of blocks belonging to the Saplings group.\n" elseif data.def.groups.soil == 2 or data.def.groups.soil == 3 then - formstring = formstring .. "This block serves as a soil for wild plants as well as plants grown from seeds. It supports their growth and spreading.\n" + formstring = formstring .. "This block serves as a soil for wild plants (Flora, Saplings) as well as plants grown from seeds. It supports their growth and spreading.\n" end if data.def.groups.fleshy ~= nil then |