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