forked from your-land/yl_cinema
12 lines
413 B
Lua
12 lines
413 B
Lua
local chatcommand_cmd = "movie_reload"
|
|
local chatcommand_definition = {
|
|
params = "[<movie_id>]", -- Short parameter description
|
|
description = "Reload specific <movie_id> or all movies, but does not create movie reel items.",
|
|
privs = {
|
|
[yl_cinema.settings.admin_priv] = true
|
|
},
|
|
func = yl_cinema.cmd_movie_reload
|
|
}
|
|
|
|
minetest.register_chatcommand(chatcommand_cmd, chatcommand_definition)
|