From c48b10a315cdb4f1ad2c173cc84438fbbd1f3082 Mon Sep 17 00:00:00 2001 From: AliasAlreadyTaken Date: Sun, 11 Jun 2023 20:26:48 +0200 Subject: [PATCH] #4668 no24 --- chatcommand_listmovies.lua => chatcommand_movie_list.lua | 2 +- chatcommand_showmovie.lua => chatcommand_movie_show.lua | 2 +- chatcommands.lua | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename chatcommand_listmovies.lua => chatcommand_movie_list.lua (92%) rename chatcommand_showmovie.lua => chatcommand_movie_show.lua (91%) diff --git a/chatcommand_listmovies.lua b/chatcommand_movie_list.lua similarity index 92% rename from chatcommand_listmovies.lua rename to chatcommand_movie_list.lua index 66fa6df..da4c29e 100644 --- a/chatcommand_listmovies.lua +++ b/chatcommand_movie_list.lua @@ -1,4 +1,4 @@ -local chatcommand_cmd = "listmovies" +local chatcommand_cmd = "movie_list" local chatcommand_definition = { params = "[]", -- Short parameter description description = "Shows the whole movielist to you that match the , if given", -- Full description diff --git a/chatcommand_showmovie.lua b/chatcommand_movie_show.lua similarity index 91% rename from chatcommand_showmovie.lua rename to chatcommand_movie_show.lua index 395f53b..157020e 100644 --- a/chatcommand_showmovie.lua +++ b/chatcommand_movie_show.lua @@ -1,4 +1,4 @@ -local chatcommand_cmd = "showmovie" +local chatcommand_cmd = "movie_show" local chatcommand_definition = { params = " ", -- Short parameter description description = "Shows to the the ", -- Full description diff --git a/chatcommands.lua b/chatcommands.lua index 0ecbd60..20e4a4f 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -1,2 +1,2 @@ -dofile(yl_cinema.modpath .. "chatcommand_showmovie.lua") -dofile(yl_cinema.modpath .. "chatcommand_listmovies.lua") \ No newline at end of file +dofile(yl_cinema.modpath .. "chatcommand_movie_show.lua") +dofile(yl_cinema.modpath .. "chatcommand_movie_list.lua") \ No newline at end of file