From: H.G. Muller Date: Mon, 25 Feb 2013 12:53:22 +0000 (+0100) Subject: Reduce number of lines in who command to 8 X-Git-Url: http://winboard.nl/cgi-bin?p=capablanca.git;a=commitdiff_plain;h=20c09dc1fcb3868ffc922e1232820dfd4c26f2c9 Reduce number of lines in who command to 8 With 9 lines a 9-round tourney would make the ICS's qtell buffers overflow. --- diff --git a/lasker-2.2.3/bots/mamer/CommandEntry.cc b/lasker-2.2.3/bots/mamer/CommandEntry.cc index 4312023..345fcb3 100644 --- a/lasker-2.2.3/bots/mamer/CommandEntry.cc +++ b/lasker-2.2.3/bots/mamer/CommandEntry.cc @@ -973,7 +973,7 @@ int CommandEntry::ListTourneyPlayers(User *user, param_list params) { } gMamer.XServerCom("%c%-0.2d%c ", result, p->value, color); } - if(((i % 9) == 0) && (i > 0)) { + if(((i % 8) == 0) && (i > 0)) { gMamer.XServerCom("%s %s %s %s", "\n", "qtell", user->name, "\\n"); } else { gMamer.XServerCom("%s", "\\n");