12 lines
323 B
Lua
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"
|
|
});
|