generated from your-land/yl_template
12 lines
467 B
Lua
12 lines
467 B
Lua
local chatcommand_cmd = "movie_list"
|
|
local chatcommand_definition = {
|
|
params = "[<searchstring>]", -- Short parameter description
|
|
description = "Shows the whole movielist to you that match the <searchstring>, if given", -- Full description
|
|
privs = {
|
|
[yl_cinema.settings.admin_priv] = true
|
|
}, -- Require the "privs" privilege to run
|
|
func = yl_cinema.cmd_list_movies
|
|
}
|
|
|
|
minetest.register_chatcommand(chatcommand_cmd, chatcommand_definition)
|