We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3da512 commit da09831Copy full SHA for da09831
ktbpa/ktbpa.py
@@ -16,8 +16,8 @@ async def on_message(self, message):
16
17
text = message.content
18
if text.lower() == "?trigger":
19
- prefixes = await self.bot.get_prefix(message)
20
- return await message.channel.send("The bot's current trigger is: %s" % prefixes)
+ prefix = await self.bot.get_prefix(message)[-1]
+ return await message.channel.send("The bot's current trigger is: `%s`" % prefix)
21
22
@commands.command()
23
@commands.guild_only()
0 commit comments