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