Skip to content
Advertisement

issues with discord.py “if channel.id ==”

I’m trying to make a bot that takes images from channel A and posts them to channel B when someone reacts to it. I have everything down so far except that it’ll also post pictures in channel B if someone reacts to one in channel C. I’m trying to use “if channel.id ==” but so far when I introduce that line the bot will only save the file and will not post anything. any advice would be appreciated

JavaScript

Advertisement

Answer

  1. on_reaction_add doesn’t take the channel argument, it’s user
  2. if reaction.emoji doesn’t make sense, it always returns an discord.Emoji, discord.PartialEmoji or str, never None, True or False.
  3. You’re getting a channel by an id, checking if the channel id is the same as it is doesn’t make sense
  4. client.get_channel(id) doesn’t return a boolean so if client.get_channel also doesn’t make sense
  5. You’re saving, sending and then deleting a file, you can simply convert it to a discord.File object and send it without all that.

Here’s your fixed code:

JavaScript

Note: You probably want to use on_raw_reaction_add instead. on_reaction_add it’s called if the message is in the internal cache. You also probably want to check if the channel is not a discord.DMChannel instance:

JavaScript
Advertisement