所以我试图制作一个机器人,当具有特定用户 ID 的人发送消息时,它会发送消息,但是当我使用它时,它最终会为每个其他用户发送垃圾邮件id,不包括特定的。这是我的代码。
@client.event
async def on_message(message):
if message.author.id != 206883079837450241:
await message.channel.send('example')
答案 0 :(得分:2)
将 !=
切换为 ==
。 !=
仅在消息的作者不是您的作者时才传递 True。 ==
正好相反。