12 lines
391 B
Lua
12 lines
391 B
Lua
-- flowers/documentation.lua
|
|
|
|
-----Load documentation via doc_helper------------------------
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
local docpath = MP .. DIR_DELIM .. "doc"
|
|
doc.add_category("flowers",
|
|
{
|
|
name = "_flowers_",
|
|
description = "Flowers Documentation",
|
|
build_formspec = doc.entry_builders.text_and_square_gallery,
|
|
})
|
|
doc.build_entries(docpath, "flowers") |