Add admin command which says who the administator is for the server.

This commit is contained in:
Splizard 2016-02-03 19:09:13 +13:00 committed by est31
parent c4e0d95c87
commit 0e75eb4324
1 changed files with 12 additions and 0 deletions

View File

@ -84,6 +84,18 @@ core.register_chatcommand("me", {
end,
})
core.register_chatcommand("admin", {
description = "Show the name of the server owner",
func = function(name)
local admin = minetest.setting_get("name")
if admin then
return true, "The administrator of this server is "..admin.."."
else
return false, "There's no administrator named in the config file."
end
end,
})
core.register_chatcommand("help", {
privs = {},
params = "[all/privs/<cmd>]",