discord.py在on_ready中发送消息不起作用

时间:2020-07-27 17:05:56

标签: discord.py

我的代码是:

@client.event
async def on_ready():

   await client.change_presence(activity=discord.Game(name="Farming A Fertile Land"))

   channel = client.get_channel("718204421619581063")
   await channel.send("Hi! I'm back online 。.:☆*:・'(*⌒―⌒*)))")

并且我收到AttributeError:'NoneType'对象没有属性'send'

1 个答案:

答案 0 :(得分:0)

改为使用channel = client.get_channel(718204421619581063)。在discord.py中重写所有ID都是整数而不是字符串。