diff --git a/Gwendolyn.py b/Gwendolyn.py index a85865a..0ba8b83 100644 --- a/Gwendolyn.py +++ b/Gwendolyn.py @@ -246,7 +246,11 @@ async def on_message(message): elif message.content.lower().startswith("!trivia "): command = message.content.lower().replace("!trivia ","") - await message.channel.send(funcs.triviaOtherThing(message.author.name,str(message.channel),command)) + response = funcs.triviaOtherThing(message.author.name,str(message.channel),command) + if response.startswith("Locked in "): + await message.add_reaction("👍") + else: + await message.channel.send(response) else: funcs.logThis("I didn't understand that") await message.channel.send("I didn't understand that")