yl_cinema/chatcommand_showmovie.lua
2023-05-30 14:02:45 +02:00

12 lines
424 B
Lua

local chatcommand_cmd = "showmovie"
local chatcommand_definition = {
params = "<name> <movie>", -- Short parameter description
description = "Shows to the <player> the <movie>", -- Full description
privs = {
[yl_cinema.settings.admin_priv] = true
}, -- Require the "privs" privilege to run
func = yl_cinema.cmd_show_movie
}
minetest.register_chatcommand(chatcommand_cmd, chatcommand_definition)