diff options
author | Vitra Suchovich <109279853+56independent@users.noreply.github.com> | 2023-02-18 00:04:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 00:04:52 +0100 |
commit | 2dafce6206dfcf02f3c31cf1abe819e901489704 (patch) | |
tree | f0d2a5c5dc03ab9c0fba4eb22eecaa5000496421 /builtin | |
parent | 0e721f7571aa7a559bb5e5fa0aeddbc14938261a (diff) | |
download | minetest-2dafce6206dfcf02f3c31cf1abe819e901489704.tar.xz |
Say /setpassword is insecure
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/game/chat.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua index bbcdcf2d0..baab5212f 100644 --- a/builtin/game/chat.lua +++ b/builtin/game/chat.lua @@ -416,7 +416,7 @@ core.register_chatcommand("revokeme", { core.register_chatcommand("setpassword", { params = S("<name> <password>"), - description = S("Set player's password"), + description = S("Set player's password (sent unencrypted, thus insecure)"), privs = {password=true}, func = function(name, param) local toname, raw_password = string.match(param, "^([^ ]+) +(.+)$") |