We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd556c1 commit 6170d12Copy full SHA for 6170d12
cogs/lar.py
@@ -61,6 +61,9 @@ async def reply(self, message: discord.Message):
61
question = qna.helpers.get_closest_question(list(self.config.question_map.values()), content)
62
response = qna.helpers.pick_response(question)
63
text = response.text or placeholder
64
+ if message.content.startswith(self.client.command_prefix):
65
+ text += "\n(psst, i don't listen to commands here! if you want to run a command, " \
66
+ "go to another channel.)"
67
await message.reply(text)
68
self.logger.debug(f"reply: {message.clean_content} -> {text}")
69
0 commit comments