summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helptexts.lua2
-rw-r--r--init.lua9
2 files changed, 4 insertions, 7 deletions
diff --git a/helptexts.lua b/helptexts.lua
index 18de9c1..df684ab 100644
--- a/helptexts.lua
+++ b/helptexts.lua
@@ -156,7 +156,7 @@ local export_longdesc = {
["farming:wheat_8"] = "The wheat plant is a plant grown from wheat seed. It only grows on wet soil in direct sunlight. It will grow through 8 stages and stops growing at its final stage. Digging it will yield up to 2 wheat seeds and 2 wheat items, the exact amount may vary. It can be dug at any stage, but only in its final stage you get the most out of it.",
["farming:cotton_8"] = "The cotton plant is a plant grown from cotton seed. It grows on wet soil or wet desert sand soil while being in direct sunlight. It will grow through 8 stages and stops growing at its final stage. Digging it will yield up to 3 cotton seeds and 3 cottons, the exact amount may vary. It can be dug at any stage, but only in its final stage you get the most out of it.",
["flowers:mushroom_brown"] = "An edible mushroom. Eat it to restore 1 hit point. Brown mushrooms like to grow and spread on natural soil (like dirt) and sometimes on fallen tree trunks. They need darkness to spread and survive and die off in direct sunlight.",
- ["flowers:mushroom_red"] = "A poisonous mushroom, don't eat it. If you eat it, you lose 5 hit point. Red mushrooms like to grow and spread on natural dirt (like dirt) and sometimes on fallen tree trunks. They need darkness to spread and survive and die off in direct sunlight.",
+ ["flowers:mushroom_red"] = "A poisonous mushroom, don't eat it. If you eat it, you lose 5 hit points. Red mushrooms like to grow and spread on natural dirt (like dirt) and sometimes on fallen tree trunks. They need darkness to spread and survive and die off in direct sunlight.",
["flowers:geranium"] = flowertext,
["flowers:dandelion_yellow"] = flowertext,
["flowers:dandelion_white"] = flowertext,
diff --git a/init.lua b/init.lua
index 0bae461..80019f7 100644
--- a/init.lua
+++ b/init.lua
@@ -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