Update flower help

This commit is contained in:
Wuzzy 2017-06-09 21:26:26 +02:00
parent df446efb04
commit 12a02f9961
2 changed files with 14 additions and 1 deletions

View File

@ -46,6 +46,15 @@ doc.sub.items.register_factoid("nodes", "groups", function(itemstring, def)
return datastring
end)
-- flower
doc.sub.items.register_factoid("nodes", "groups", function(itemstring, def)
local datastring = ""
if def.groups.flower == 1 then
return "This is a flower which can grow on dirt, grass blocks and podzol. To survive, it needs to have an unobstructed view to the sky above or be exposed to a light level of 8 or higher."
end
return ""
end)
-- flammable
doc.sub.items.register_factoid("nodes", "groups", function(itemstring, def)
if def.groups.flammable then

View File

@ -5,6 +5,7 @@ flower_tmp={}
-- Simple flower template
local smallflowerlongdesc = "This is a small flower. Small flowers are mainly used for dye production and can also be potted."
local flowerusagehelp = "It can only be placed on a block on which it would also survive."
-- on_place function for flowers
local on_place_flower = mcl_util.generate_on_place_plant_function(function(pos, node)
@ -29,6 +30,7 @@ local function add_simple_flower(name, desc, image, simple_selection_box)
minetest.register_node("mcl_flowers:"..name, {
description = desc,
_doc_items_longdesc = smallflowerlongdesc,
_doc_items_usagehelp = flowerusagehelp,
drawtype = "plantlike",
tiles = { image..".png" },
inventory_image = image..".png",
@ -141,16 +143,18 @@ local function add_large_plant(name, desc, longdesc, bottom_img, top_img, inv_im
if not inv_img then
inv_img = top_img
end
local flowergroup
local flowergroup, usagehelp
if is_flower == nil then
is_flower = true
end
if is_flower then
flowergroup = 1
usagehelp = flowerusagehelp
end
minetest.register_node("mcl_flowers:"..name, {
description = desc,
_doc_items_longdesc = longdesc,
_doc_items_usagehelp = usagehelp,
drawtype = "plantlike",
tiles = { bottom_img },
inventory_image = inv_img,