From 528f1cb81fb8c16b5ca50d1cbe5eca917bb6875f Mon Sep 17 00:00:00 2001 From: AFCMS Date: Thu, 24 Jun 2021 10:03:05 +0200 Subject: [PATCH] move some files to the right location --- mods/CORE/mcl_commands/init.lua | 14 +++++++------- mods/CORE/mcl_commands/{ => register}/kill.lua | 0 mods/CORE/mcl_commands/{ => register}/list.lua | 0 mods/CORE/mcl_commands/{ => register}/say.lua | 0 mods/CORE/mcl_commands/{ => register}/seed.lua | 0 mods/CORE/mcl_commands/{ => register}/setblock.lua | 0 mods/CORE/mcl_commands/{ => register}/sound.lua | 0 mods/CORE/mcl_commands/{ => register}/summon.lua | 0 8 files changed, 7 insertions(+), 7 deletions(-) rename mods/CORE/mcl_commands/{ => register}/kill.lua (100%) rename mods/CORE/mcl_commands/{ => register}/list.lua (100%) rename mods/CORE/mcl_commands/{ => register}/say.lua (100%) rename mods/CORE/mcl_commands/{ => register}/seed.lua (100%) rename mods/CORE/mcl_commands/{ => register}/setblock.lua (100%) rename mods/CORE/mcl_commands/{ => register}/sound.lua (100%) rename mods/CORE/mcl_commands/{ => register}/summon.lua (100%) diff --git a/mods/CORE/mcl_commands/init.lua b/mods/CORE/mcl_commands/init.lua index a287c2926..97eee3abc 100644 --- a/mods/CORE/mcl_commands/init.lua +++ b/mods/CORE/mcl_commands/init.lua @@ -1,11 +1,11 @@ local modpath = minetest.get_modpath(minetest.get_current_modname()) -dofile(modpath.."/kill.lua") -dofile(modpath.."/setblock.lua") -dofile(modpath.."/seed.lua") -dofile(modpath.."/summon.lua") -dofile(modpath.."/say.lua") -dofile(modpath.."/list.lua") -dofile(modpath.."/sound.lua") +dofile(modpath.."/register/kill.lua") +dofile(modpath.."/register/setblock.lua") +dofile(modpath.."/register/seed.lua") +dofile(modpath.."/register/summon.lua") +dofile(modpath.."/register/say.lua") +dofile(modpath.."/register/list.lua") +dofile(modpath.."/register/sound.lua") dofile(modpath.."/alias.lua") \ No newline at end of file diff --git a/mods/CORE/mcl_commands/kill.lua b/mods/CORE/mcl_commands/register/kill.lua similarity index 100% rename from mods/CORE/mcl_commands/kill.lua rename to mods/CORE/mcl_commands/register/kill.lua diff --git a/mods/CORE/mcl_commands/list.lua b/mods/CORE/mcl_commands/register/list.lua similarity index 100% rename from mods/CORE/mcl_commands/list.lua rename to mods/CORE/mcl_commands/register/list.lua diff --git a/mods/CORE/mcl_commands/say.lua b/mods/CORE/mcl_commands/register/say.lua similarity index 100% rename from mods/CORE/mcl_commands/say.lua rename to mods/CORE/mcl_commands/register/say.lua diff --git a/mods/CORE/mcl_commands/seed.lua b/mods/CORE/mcl_commands/register/seed.lua similarity index 100% rename from mods/CORE/mcl_commands/seed.lua rename to mods/CORE/mcl_commands/register/seed.lua diff --git a/mods/CORE/mcl_commands/setblock.lua b/mods/CORE/mcl_commands/register/setblock.lua similarity index 100% rename from mods/CORE/mcl_commands/setblock.lua rename to mods/CORE/mcl_commands/register/setblock.lua diff --git a/mods/CORE/mcl_commands/sound.lua b/mods/CORE/mcl_commands/register/sound.lua similarity index 100% rename from mods/CORE/mcl_commands/sound.lua rename to mods/CORE/mcl_commands/register/sound.lua diff --git a/mods/CORE/mcl_commands/summon.lua b/mods/CORE/mcl_commands/register/summon.lua similarity index 100% rename from mods/CORE/mcl_commands/summon.lua rename to mods/CORE/mcl_commands/register/summon.lua