2019-11-12 20:29:46 +02:00

19 lines
417 B
Lua

local modpath = minetest.get_modpath(minetest.get_current_modname())
-- Register base module
ess.register_module("ess", "Essential commands for server management")
-- Tools related commands
dofile(modpath.."/tools.lua")
-- Teleportation related commands
dofile(modpath.."/teleport.lua")
dofile(modpath.."/warp.lua")
-- Player related commands
dofile(modpath.."/player.lua")
-- Kits
dofile(modpath.."/kits.lua")