don't post list of entries at start of round if message would be too long
This commit is contained in:
parent
379b350930
commit
85a94138c8
1 changed files with 5 additions and 0 deletions
|
@ -365,8 +365,13 @@ int main() {
|
||||||
if (advanced)
|
if (advanced)
|
||||||
msg += "The only entry left in the previous round was \"" + *advanced + "\", so it advanced. ";
|
msg += "The only entry left in the previous round was \"" + *advanced + "\", so it advanced. ";
|
||||||
msg += "There are " + std::to_string(left_for_this_round.size()) + " entries remaining:";
|
msg += "There are " + std::to_string(left_for_this_round.size()) + " entries remaining:";
|
||||||
|
std::string msg_backup = msg;
|
||||||
for (int i = left_for_this_round.size() - 1; i >= 0; --i)
|
for (int i = left_for_this_round.size() - 1; i >= 0; --i)
|
||||||
msg += "\n* \"" + left_for_this_round[i] + "\"";
|
msg += "\n* \"" + left_for_this_round[i] + "\"";
|
||||||
|
if (msg.size() > 2000) {
|
||||||
|
msg = std::move(msg_backup);
|
||||||
|
msg.back() = '.';
|
||||||
|
}
|
||||||
send_message(msg);
|
send_message(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue