yl_cinema/chatcommand_movie_imprint.lua
2023-08-21 11:03:50 +02:00

12 lines
431 B
Lua

local chatcommand_cmd = "movie_imprint"
local chatcommand_definition = {
params = "<movie>", -- Short parameter description
description = "Imprints the <movie> on the wielded reel", -- Full description
privs = {
[yl_cinema.settings.admin_priv] = true
}, -- Require the "privs" privilege to run
func = yl_cinema.cmd_movie_imprint
}
minetest.register_chatcommand(chatcommand_cmd, chatcommand_definition)