2013-09-03 01:16:14 +02:00
|
|
|
-- Areas mod by ShadowNinja
|
|
|
|
-- Based on node_ownership
|
2013-09-17 18:38:29 +02:00
|
|
|
-- License: LGPLv2+
|
2013-09-03 01:16:14 +02:00
|
|
|
|
|
|
|
areas = {}
|
|
|
|
|
|
|
|
areas.startTime = os.clock()
|
|
|
|
|
|
|
|
areas.modpath = minetest.get_modpath("areas")
|
|
|
|
dofile(areas.modpath.."/settings.lua")
|
|
|
|
dofile(areas.modpath.."/api.lua")
|
|
|
|
dofile(areas.modpath.."/internal.lua")
|
|
|
|
dofile(areas.modpath.."/chatcommands.lua")
|
|
|
|
dofile(areas.modpath.."/pos.lua")
|
|
|
|
dofile(areas.modpath.."/interact.lua")
|
|
|
|
dofile(areas.modpath.."/legacy.lua")
|
2013-09-26 16:30:36 +02:00
|
|
|
dofile(areas.modpath.."/hud.lua")
|
2013-09-03 01:16:14 +02:00
|
|
|
|
|
|
|
areas:load()
|
|
|
|
|
|
|
|
minetest.register_privilege("areas", {description = "Can administer areas"})
|
|
|
|
|
|
|
|
if not minetest.registered_privileges[areas.self_protection_privilege] then
|
|
|
|
minetest.register_privilege(areas.self_protection_privilege,
|
|
|
|
{description = "Can protect areas"})
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.setting_getbool("log_mod") then
|
|
|
|
local diffTime = os.clock() - areas.startTime
|
|
|
|
print("[areas] loaded in "..diffTime.."s.")
|
|
|
|
end
|
|
|
|
|