2024-05-19 08:32:27 +01:00

8 lines
316 B
Lua

minetest.register_chatcommand("stop",{
description = "This will shutdown the server",
params = "Reason",
privs = {server = true},
func = function(name, params)
minetest.request_shutdown(" - This server has been forcably closed by: " ..name.. " - " .. " For the reason: " ..params)
end,
})