やりたいこと
コマンドを打った人にDMを送りたい
コード
python
1@client.command(aliases=['a']) 2async def a(ctx): 3 dm = ctx.author.dm_create() 4 await dm.send("送りたい内容")
エラー
AttributeError: 'Member' object has no attribute 'dm_create'
The above exception was the direct cause of the following exception:
回答1件
あなたの回答
tips
プレビュー