From 53c523bee0aa8bd0435aa478d0110fe7467b60e1 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 1 Apr 2020 21:46:30 +1100 Subject: [PATCH] Remove /undo and 'max realms' instead in /ranks --- MCGalaxy/Commands/Information/CmdHelp.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/MCGalaxy/Commands/Information/CmdHelp.cs b/MCGalaxy/Commands/Information/CmdHelp.cs index 78529a83c..37e6c31f2 100644 --- a/MCGalaxy/Commands/Information/CmdHelp.cs +++ b/MCGalaxy/Commands/Information/CmdHelp.cs @@ -61,10 +61,9 @@ namespace MCGalaxy.Commands.Info { static void PrintRanks(Player p) { foreach (Group grp in Group.GroupList) { if (grp.Permission >= LevelPermission.Nobody) continue; - string undoTime = grp.MaxUndo.Shorten(true, false); - - p.Message("{0} %S- Draw: {1}, Undo: {2}, Perm: {3}, max OS maps: {4}", - grp.ColoredName, grp.DrawLimit, undoTime, (int)grp.Permission, grp.OverseerMaps); + + p.Message("{0} %S- Draw: {1}, Perm: {2}, max realms: {3}", + grp.ColoredName, grp.DrawLimit, (int)grp.Permission, grp.OverseerMaps); } }