From 0e75eb4324ba71c3d685b2f22a8a36b3aa0c9ef5 Mon Sep 17 00:00:00 2001 From: Splizard Date: Wed, 3 Feb 2016 19:09:13 +1300 Subject: [PATCH] Add admin command which says who the administator is for the server. --- builtin/game/chatcommands.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua index 6a35c034e..fff893b28 100644 --- a/builtin/game/chatcommands.lua +++ b/builtin/game/chatcommands.lua @@ -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/]",