2019-03-07 21:14:30 +01:00
|
|
|
local S = minetest.get_translator("mcl_commands")
|
2017-01-12 16:10:57 +01:00
|
|
|
|
2019-03-08 20:22:01 +01:00
|
|
|
local mod_death_messages = minetest.get_modpath("mcl_death_messages")
|
|
|
|
|
2021-03-05 09:47:48 +01:00
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
2017-01-12 16:10:57 +01:00
|
|
|
|
2021-03-05 09:47:48 +01:00
|
|
|
dofile(modpath.."/kill.lua")
|
|
|
|
dofile(modpath.."/setblock.lua")
|
|
|
|
dofile(modpath.."/seed.lua")
|
|
|
|
dofile(modpath.."/summon.lua")
|
|
|
|
dofile(modpath.."/say.lua")
|
2021-03-05 10:22:52 +01:00
|
|
|
dofile(modpath.."/list.lua")
|
2021-03-05 16:37:56 +01:00
|
|
|
dofile(modpath.."/sound.lua")
|
2017-01-12 16:10:57 +01:00
|
|
|
|
2021-03-05 10:22:52 +01:00
|
|
|
dofile(modpath.."/alias.lua")
|