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: