diff --git a/privs.lua b/privs.lua index d943dcb..7d743cb 100644 --- a/privs.lua +++ b/privs.lua @@ -1,18 +1,31 @@ +-- common/public minetest.register_privilege("protect_streets", { - description = "Protection for streets" + description = "Protection for common streets" }) minetest.register_privilege("protect_rails", { - description = "Protection for rails/trainlines" + description = "Protection for common rails/trainlines" }) minetest.register_privilege("protect_public_places", { - description = "Protection for public places" + description = "Protection for common public places" }) +minetest.register_privilege("protect_public_infrastructure", { + description = "Protection for common public infrastructure (machines, etc)" +}) + +-- travel + minetest.register_privilege("admin_travel", { description = "can use the admins travelnets" }) +-- specific privs + +minetest.register_privilege("protect_technic_city_infra", { + description = "Protection for technic city infrastructure" +}) +