1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Add a newline after answerers in trivia questions

This commit is contained in:
Steffo 2019-09-03 15:46:48 +02:00
parent dda5beabe5
commit 807f0998b4

View file

@ -90,6 +90,6 @@ class TriviaCommand(Command):
results += self._correct_emoji
else:
results += self._wrong_emoji
results += f" {answerer}"
results += f" {answerer}\n"
await data.reply(results)
del self._answerers[question_id]