Skip to content

Commit

Permalink
Actually don't display unique clients count in /pclients
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodlyay committed Aug 8, 2024
1 parent 7f01f7f commit 1ba7e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MCGalaxy/Commands/Information/CmdPClients.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 1ba7e39

Please sign in to comment.