From cc78f12a4c604f64d111d47012316aa05577fecd Mon Sep 17 00:00:00 2001 From: Andrey Kozlovskiy Date: Sat, 18 Jul 2020 18:57:42 +0300 Subject: [PATCH] Display total number of players with /who (#65) --- player_part.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player_part.lua b/player_part.lua index 0e7b1c6..3a22292 100644 --- a/player_part.lua +++ b/player_part.lua @@ -47,7 +47,7 @@ minetest.register_chatcommand("who", { out[n] = plname end table.sort(out) - return true, "Players in channel: "..table.concat(out, ", ") + return true, n.." player(s) in channel: "..table.concat(out, ", ") end })