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")