missions/privs.lua
Thomas Rudin 25b55a87ef fix #18
2018-08-23 08:28:07 +02:00

12 lines
323 B
Lua

local has_mobs_mod = minetest.get_modpath("mobs")
if has_mobs_mod then
minetest.register_privilege("missions_mobs", {
description = "Allows the creation of mission steps with mobs"
});
end
minetest.register_privilege("missions_teleport", {
description = "Allows the creation of mission steps with teleportation"
});