diff --git a/mods/ITEMS/mcl_cocoas/init.lua b/mods/ITEMS/mcl_cocoas/init.lua index ea40a95e0..61d91e9a2 100644 --- a/mods/ITEMS/mcl_cocoas/init.lua +++ b/mods/ITEMS/mcl_cocoas/init.lua @@ -77,7 +77,7 @@ Using meshes will also clean up the texture mess. local crop_def = { description = "Premature Cocoa", _doc_items_create_entry = true, - _doc_items_longdesc = "Cocoas are plants which grow on the side of jungle trees. There are 3 growth stages.", + _doc_items_longdesc = "Cocoas are plants which grow on the side of jungle trees in 3 stages.", drawtype = "nodebox", tiles = { "[combine:32x32:12,2=mcl_cocoas_cocoa_stage_0.png", "[combine:32x32:12,22=mcl_cocoas_cocoa_stage_0.png", @@ -152,7 +152,7 @@ minetest.register_node("mcl_cocoas:cocoa_2", table.copy(crop_def)) -- Final stage crop_def.description = "Mature Cocoa" -crop_def._doc_items_longdesc = "A mature cocoa is a plant which grew on a jungle tree to its full size and it is ready to be harvested." +crop_def._doc_items_longdesc = "A mature cocoa is a plant which grew on a jungle tree to its full size and it is ready to be harvested for cocoa beans. It won't grow any further." crop_def._doc_items_create_entry = true crop_def.groups.cocoa = 3 crop_def.tiles = { diff --git a/mods/ITEMS/mcl_nether/nether_wart.lua b/mods/ITEMS/mcl_nether/nether_wart.lua index 14af26807..086c343af 100644 --- a/mods/ITEMS/mcl_nether/nether_wart.lua +++ b/mods/ITEMS/mcl_nether/nether_wart.lua @@ -1,4 +1,6 @@ minetest.register_node("mcl_nether:nether_wart_0", { + description = "Premature Nether Wart", + _doc_items_longdesc = "A premature nether wart has just recently been planted on soul sand. Nether wart slowly grows on soul sand in 3 stages. Although nether wart is home to the Nether, it grows in any dimension.", paramtype = "light", walkable = false, buildable_to = true, @@ -16,8 +18,6 @@ minetest.register_node("mcl_nether:nether_wart_0", { }) minetest.register_node("mcl_nether:nether_wart_1", { - description = "Premature Nether Wart", - _doc_items_longdesc = "A premature nether wart has just recently been planted on soul sand. Nether wart slowly grows on soul sand in 3 stages. Although nether wart is home to the Nether, it grows in any dimension.", paramtype = "light", walkable = false, buildable_to = true, @@ -55,7 +55,7 @@ minetest.register_node("mcl_nether:nether_wart_2", { minetest.register_node("mcl_nether:nether_wart", { description = "Mature Nether Wart", - _doc_items_longdesc = "Mature nether wart has been grown successfully on soul sand and is ready to be harvested for its items.", + _doc_items_longdesc = "The mature nether wart is a plant from the Nether and reached its full size and won't grow any further. It is ready to be harvested for its items.", paramtype = "light", walkable = false, buildable_to = true,