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