From 807f0998b431ca6956b34aa65c2e4e355d8094bc Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 3 Sep 2019 15:46:48 +0200 Subject: [PATCH] Add a newline after answerers in trivia questions --- royalnet/commands/royalgames/trivia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/royalnet/commands/royalgames/trivia.py b/royalnet/commands/royalgames/trivia.py index 5d74da90..4b861b3d 100644 --- a/royalnet/commands/royalgames/trivia.py +++ b/royalnet/commands/royalgames/trivia.py @@ -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]