diff --git a/docs/config.ld b/docs/config.ld index cee5dc0..cf42efe 100644 --- a/docs/config.ld +++ b/docs/config.ld @@ -4,6 +4,7 @@ format = "markdown" boilerplate = false file = { + "init.lua", "settings.lua", "api.lua", "chat.lua", @@ -11,8 +12,14 @@ file = { new_type("chatcmd", "Chat Commands") new_type("setting", "Settings") +new_type("tool", "Tools") custom_tags = { + { + "privs", + title = "Required Privileges", + }, + -- settings { "settype", title = "Setting Type", @@ -21,4 +28,12 @@ custom_tags = { "default", title = "Default Value", }, + -- craft items/tools + { + "img", + title = "Image", + format = function(value) + return "" + end, + }, }