Remove /undo and 'max realms' instead in /ranks

This commit is contained in:
UnknownShadow200 2020-04-01 21:46:30 +11:00
parent 59b86d578d
commit 53c523bee0

View File

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