MineClone2/mods/CORE/mcl_commands/init.lua

16 lines
461 B
Lua
Raw Normal View History

2021-03-05 09:47:48 +01:00
local modpath = minetest.get_modpath(minetest.get_current_modname())
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")
2021-03-05 10:22:52 +01:00
dofile(modpath.."/alias.lua")