Remove excessive spacing with /notecardreveal (#291)

This commit is contained in:
AwesomeAim 2022-06-29 06:07:53 -07:00 committed by GitHub
parent 6dfffe76f1
commit 0234588007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -170,7 +170,7 @@ void AOClient::cmdNoteCardReveal(int argc, QStringList argv)
} }
QString l_message("Note cards have been revealed.\n"); QString l_message("Note cards have been revealed.\n");
l_message.append(l_notecards.join("\n") + "\n"); l_message.append(l_notecards.join(""));
sendServerMessageArea(l_message); sendServerMessageArea(l_message);
} }