moar privs for priv_protector

This commit is contained in:
NatureFreshMilk 2019-04-30 09:55:29 +02:00
parent f6a366a079
commit 8eae7a5667

View File

@ -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"
})