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); } }