1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Make chat command + privilege help slightly more accurate (#6964)

* Make chat command help slightly more accurate

* Slightly more accurate privilege help

* Simplify command/priv help

* More command/priv help tweaks
This commit is contained in:
Wuzzy 2018-01-29 23:39:36 +01:00 committed by Loïc Blot
parent de2c40c8fc
commit 3b4df956b1
2 changed files with 28 additions and 23 deletions

View file

@ -34,7 +34,7 @@ core.register_privilege("basic_privs", "Can modify 'shout' and 'interact' privil
core.register_privilege("privs", "Can modify privileges")
core.register_privilege("teleport", {
description = "Can use /teleport command",
description = "Can teleport self",
give_to_singleplayer = false,
})
core.register_privilege("bring", {
@ -42,7 +42,7 @@ core.register_privilege("bring", {
give_to_singleplayer = false,
})
core.register_privilege("settime", {
description = "Can use /time",
description = "Can set the time of day using /time",
give_to_singleplayer = false,
})
core.register_privilege("server", {
@ -74,15 +74,15 @@ core.register_privilege("password", {
give_to_admin = true,
})
core.register_privilege("fly", {
description = "Can fly using the free_move mode",
description = "Can use fly mode",
give_to_singleplayer = false,
})
core.register_privilege("fast", {
description = "Can walk fast using the fast_move mode",
description = "Can use fast mode",
give_to_singleplayer = false,
})
core.register_privilege("noclip", {
description = "Can fly through walls",
description = "Can fly through solid nodes using noclip mode",
give_to_singleplayer = false,
})
core.register_privilege("rollback", {