Jafacakes10 ee9f2ce3ff Changed to 4.0.0
All files containing versions changed to 4.0.0 - all files
2024-11-05 20:19:11 +00:00

7 lines
291 B
Lua

minetest.register_chatcommand("stat", {
description = "This will show the server status",
func = function(name)
local stat = minetest.get_server_status(name, false)
minetest.chat_send_player(name, "Current server stats: " ..stat.. " | JCA version: 4.0.0")
end,
})