2024-05-19 08:32:27 +01:00
|
|
|
if minetest.settings:get_bool("log_mods") then
|
|
|
|
print("[JCA_Mod] Loaded!")
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_privilege("announce", {
|
|
|
|
description = "This allows you to use the /shout command.",
|
|
|
|
give_to_admin = true
|
|
|
|
})
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/admin.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/day.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/fly.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/info.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/mute.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/noadmin.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/nofly.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/shout.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/stop.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/tp.lua')
|
2024-05-26 17:17:58 +01:00
|
|
|
dofile(minetest.get_modpath("jca") ..'/unmute.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/build.lua')
|
2024-06-08 09:10:46 +01:00
|
|
|
dofile(minetest.get_modpath("jca") ..'/nobuild.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/noclip.lua')
|
2024-11-05 19:59:50 +00:00
|
|
|
dofile(minetest.get_modpath("jca") ..'/clip.lua')
|
2024-11-05 20:19:11 +00:00
|
|
|
-- V 4.0.0
|
2024-11-05 19:59:50 +00:00
|
|
|
dofile(minetest.get_modpath("jca") ..'/ver.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/stat.lua')
|
|
|
|
dofile(minetest.get_modpath("jca") ..'/b.lua')
|