From 1ba7e39d3cab1422f8035a06470e1bc854bdd7f4 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Wed, 7 Aug 2024 19:36:08 -0700 Subject: [PATCH] Actually don't display unique clients count in /pclients --- MCGalaxy/Commands/Information/CmdPClients.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Commands/Information/CmdPClients.cs b/MCGalaxy/Commands/Information/CmdPClients.cs index 9f5a3b46a..1107c2496 100644 --- a/MCGalaxy/Commands/Information/CmdPClients.cs +++ b/MCGalaxy/Commands/Information/CmdPClients.cs @@ -60,7 +60,7 @@ public override void Use(Player p, string message, CommandData data) { } lines.Add(string.Format(" {0}: &f{1}", kvp.Key, builder.ToString())); } - lines.Add(string.Format("Displayed {0} unique client name{1}.", clients.Count, clients.Count == 1 ? "" : "s")); + //lines.Add(string.Format("Displayed {0} unique client name{1}.", clients.Count, clients.Count == 1 ? "" : "s")); p.MessageLines(lines); }