mirror of
https://github.com/minetest-mods/areas.git
synced 2024-11-10 12:30:31 +01:00
43 lines
1.2 KiB
Lua
43 lines
1.2 KiB
Lua
-- Areas mod by ShadowNinja
|
|
-- Based on node_ownership
|
|
-- License: LGPLv2+
|
|
|
|
areas = {}
|
|
|
|
areas.factions_available = minetest.global_exists("factions")
|
|
|
|
areas.adminPrivs = {areas=true}
|
|
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")
|
|
dofile(areas.modpath.."/hud.lua")
|
|
|
|
areas:load()
|
|
|
|
minetest.register_privilege("areas", {
|
|
description = "Can administer areas.",
|
|
give_to_singleplayer = false
|
|
})
|
|
minetest.register_privilege("areas_high_limit", {
|
|
description = "Can protect more, bigger areas.",
|
|
give_to_singleplayer = false
|
|
})
|
|
|
|
if not minetest.registered_privileges[areas.config.self_protection_privilege] then
|
|
minetest.register_privilege(areas.config.self_protection_privilege, {
|
|
description = "Can protect areas.",
|
|
})
|
|
end
|
|
|
|
if minetest.settings:get_bool("log_mods") then
|
|
local diffTime = os.clock() - areas.startTime
|
|
minetest.log("action", "areas loaded in "..diffTime.."s.")
|
|
end
|