mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-16 18:01:40 +00:00
Check if player exists on use of /privs (#7554)
* /privs: Check if player exists
This commit is contained in:
parent
1aaee5b30d
commit
a0635f6024
1 changed files with 4 additions and 1 deletions
|
@ -97,6 +97,9 @@ core.register_chatcommand("privs", {
|
||||||
func = function(caller, param)
|
func = function(caller, param)
|
||||||
param = param:trim()
|
param = param:trim()
|
||||||
local name = (param ~= "" and param or caller)
|
local name = (param ~= "" and param or caller)
|
||||||
|
if not core.player_exists(name) then
|
||||||
|
return false, "Player " .. name .. " does not exist."
|
||||||
|
end
|
||||||
return true, "Privileges of " .. name .. ": "
|
return true, "Privileges of " .. name .. ": "
|
||||||
.. core.privs_to_string(
|
.. core.privs_to_string(
|
||||||
core.get_player_privs(name), ' ')
|
core.get_player_privs(name), ' ')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue