1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-11-07 02:35:20 +01:00

Try to fix list indentation

This commit is contained in:
Bradley Pierce
2024-01-25 21:04:40 -05:00
parent 6b579d7413
commit 4d18a89e5d
4 changed files with 165 additions and 168 deletions

View File

@@ -5045,13 +5045,12 @@ and `minetest.register_on_priv_revoke` functions.
Minetest includes a set of built-in privileges that control capabilities Minetest includes a set of built-in privileges that control capabilities
provided by the Minetest engine and can be used by mods: provided by the Minetest engine and can be used by mods:
* Basic privileges are normally granted to all players: * Basic privileges are normally granted to all players:
* `shout`: can communicate using the in-game chat. * `shout`: can communicate using the in-game chat.
* `interact`: can modify the world by digging, building and interacting * `interact`: can modify the world by digging, building and interacting
with the nodes, entities and other players. Players without the `interact` with the nodes, entities and other players. Players without the `interact`
privilege can only travel and observe the world. privilege can only travel and observe the world.
* Advanced privileges allow bypassing certain aspects of the gameplay:
* Advanced privileges allow bypassing certain aspects of the gameplay:
* `fast`: can use "fast mode" to move with maximum speed. * `fast`: can use "fast mode" to move with maximum speed.
* `fly`: can use "fly mode" to move freely above the ground without falling. * `fly`: can use "fly mode" to move freely above the ground without falling.
* `noclip`: can use "noclip mode" to fly through solid nodes (e.g. walls). * `noclip`: can use "noclip mode" to fly through solid nodes (e.g. walls).
@@ -5062,8 +5061,7 @@ provided by the Minetest engine and can be used by mods:
in the game to oneself or others. in the game to oneself or others.
* `settime`: can use `/time` command to change current in-game time. * `settime`: can use `/time` command to change current in-game time.
* `debug`: can enable wireframe rendering mode. * `debug`: can enable wireframe rendering mode.
* Security-related privileges:
* Security-related privileges:
* `privs`: can modify privileges of the players using `/grant[me]` and * `privs`: can modify privileges of the players using `/grant[me]` and
`/revoke[me]` commands. `/revoke[me]` commands.
* `basic_privs`: can grant and revoke basic privileges as defined by * `basic_privs`: can grant and revoke basic privileges as defined by
@@ -5074,8 +5072,7 @@ provided by the Minetest engine and can be used by mods:
to manage players' passwords. to manage players' passwords.
* `protection_bypass`: can bypass node protection. Note that the engine does not act upon this privilege, * `protection_bypass`: can bypass node protection. Note that the engine does not act upon this privilege,
it is only an implementation suggestion for games. it is only an implementation suggestion for games.
* Administrative privileges:
* Administrative privileges:
* `server`: can use `/fixlight`, `/deleteblocks` and `/deleteobjects` * `server`: can use `/fixlight`, `/deleteblocks` and `/deleteobjects`
commands. Can clear inventory of other players using `/clearinv` command. commands. Can clear inventory of other players using `/clearinv` command.
* `rollback`: can use `/rollback_check` and `/rollback` commands. * `rollback`: can use `/rollback_check` and `/rollback` commands.
@@ -5084,8 +5081,8 @@ provided by the Minetest engine and can be used by mods:
Minetest includes the following settings to control behavior of privileges: Minetest includes the following settings to control behavior of privileges:
* `default_privs`: defines privileges granted to new players. * `default_privs`: defines privileges granted to new players.
* `basic_privs`: defines privileges that can be granted/revoked by players having * `basic_privs`: defines privileges that can be granted/revoked by players having
the `basic_privs` privilege. This can be used, for example, to give the `basic_privs` privilege. This can be used, for example, to give
limited moderation powers to selected users. limited moderation powers to selected users.