diff options
author | Wuzzy <almikes@aol.com> | 2016-10-13 05:21:45 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-10-13 05:21:45 +0200 |
commit | ec9127adb13a2a9de0b2e1b88e041c55cf8a4637 (patch) | |
tree | b7d13e7d477b4b8ea8a54d3ed48be029037123c4 | |
parent | 0237c1b64ea52dcc8fb4ef9fb353b5355ac9918f (diff) |
Rename reveal priv
-rw-r--r-- | init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -880,14 +880,14 @@ if minetest.get_modpath("unified_inventory") ~= nil then end minetest.register_privilege("doc_reveal", { - description = "Allows you to reveal all hidden help entries with /doc_unlock", + description = "Allows you to reveal all hidden help entries with /doc_reveal", give_to_singleplayer = false }) minetest.register_chatcommand("doc_reveal", { params = "", description = "Reveals all hidden help entries to you", - privs = { doc_unlock = true }, + privs = { doc_reveal = true }, func = function(name, param) doc.mark_all_entries_as_revealed(name) end, |