指定したチャンネルを削除したい
messageのチャンネルを削除したい。
python
1@bot.event 2async def on_message(message): 3 if message.channel.id in channellist: 4 await message.channel_delete(message.channel.id)
エラー
Ignoring exception in on_message Traceback (most recent call last): File "C:\Users\waon-pc\AppData\Local\Programs\Python\Python39-32\lib\site-packages\discord\client.py", line 349, in _run_event await coro(*args, **kwargs) File "f:\data\data*********.py", line 46, in on_message channel = message.get_channel(message.channel.id) AttributeError: 'Message' object has no attribute 'get_channel'
何か勘違いしているところがあるかもしれませんが、回答お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/28 09:32