From dda97b0c0020c8dfe3cc51ddcb4896dd47392099 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 3 Aug 2016 15:34:15 +0200 Subject: Rename helptext gather functions --- init.lua | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index bcab5ab..d46722d 100644 --- a/init.lua +++ b/init.lua @@ -544,12 +544,15 @@ doc.new_category("craftitems", { doc.sub.items.help = {} doc.sub.items.help.longdesc = {} doc.sub.items.help.usagehelp = {} --- Gather help texts -function doc.sub.items.add_helptexts(longdesc, usagehelp) - for k,v in pairs(longdesc) do +-- Sets the long description for a table of items +function doc.sub.items.set_items_longdesc(longdesc_table) + for k,v in pairs(longdesc_table) do doc.sub.items.help.longdesc[k] = v end - for k,v in pairs(usagehelp) do +end +-- Sets the usage help texts for a table of items +function doc.sub.items.set_items_usagehelp(usagehelp_table) + for k,v in pairs(usagehelp_table) do doc.sub.items.help.usagehelp[k] = v end end -- cgit v1.2.3