This commit is contained in:
AliasAlreadyTaken 2023-06-11 20:26:48 +02:00
parent 6fcfcac07b
commit c48b10a315
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
local chatcommand_cmd = "listmovies"
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

View File

@ -1,4 +1,4 @@
local chatcommand_cmd = "showmovie"
local chatcommand_cmd = "movie_show"
local chatcommand_definition = {
params = "<name> <movie>", -- Short parameter description
description = "Shows to the <player> the <movie>", -- Full description

View File

@ -1,2 +1,2 @@
dofile(yl_cinema.modpath .. "chatcommand_showmovie.lua")
dofile(yl_cinema.modpath .. "chatcommand_listmovies.lua")
dofile(yl_cinema.modpath .. "chatcommand_movie_show.lua")
dofile(yl_cinema.modpath .. "chatcommand_movie_list.lua")