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