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