From 01a2f329b7a27add5e1d27d516f0146e98f63687 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Tue, 6 Apr 2021 09:59:05 +0200 Subject: [PATCH] :paint_brush: Uses italics and bold in trivia Makes it prettier --- funcs/games/trivia.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/funcs/games/trivia.py b/funcs/games/trivia.py index 6c75fc6..f8d17c0 100644 --- a/funcs/games/trivia.py +++ b/funcs/games/trivia.py @@ -106,14 +106,14 @@ class Trivia(): self.bot.databaseFuncs.deleteGame("trivia questions",str(ctx.channel_id)) self.bot.log("Time's up for the trivia question",str(ctx.channel_id)) - await ctx.send("Time's up The answer was \""+chr(correctAnswer)+") "+options[correctAnswer-97]+"\". Anyone who answered that has gotten 1 GwendoBuck") + await ctx.send("Time's up The answer was \"*"+chr(correctAnswer)+") "+options[correctAnswer-97]+"*\". Anyone who answered that has gotten 1 GwendoBuck") else: await ctx.send(question, hidden=True) elif answer in ["a","b","c","d"]: response = self.triviaAnswer("#"+str(ctx.author.id), str(ctx.channel_id), answer) if response.startswith("Locked in "): - await ctx.send(f"{ctx.author.display_name} answered {answer})") + await ctx.send(f"{ctx.author.display_name} answered **{answer}**") else: await ctx.send(response) else: