Reputation: 59
I'm trying to make a bot that's specific to a server with all the emojis as prefixes. My issue is, the bot doesn't respond to the emoji. Here's my code:
bot = commands.Bot(command_prefix=':AtlantaFalcons:,' ':BaltimoreRavens')
Upvotes: 0
Views: 418
Reputation: 41
Get the full id of the emoji sending \:emoji:
in discord, you'll get something like <:emojiname:99999999999>
The copy paste that and put it in the bot(command_prefix)
option
Upvotes: 1