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-06-24 09:40:35 +00:00
|
|
|
mcl_commands = {}
|
|
|
|
|
|
|
|
dofile(modpath.."/api.lua")
|
|
|
|
|
2021-06-24 08:03:05 +00:00
|
|
|
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")
|
2021-06-24 09:40:35 +00:00
|
|
|
dofile(modpath.."/register/banlist.lua")
|
2017-01-12 15:10:57 +00:00
|
|
|
|
2021-03-05 09:22:52 +00:00
|
|
|
dofile(modpath.."/alias.lua")
|