我正在编写一个小型消息记录程序,我希望该机器人仅记录来自特定公会的消息,为此,我检查了message.guild.id
。然而,当在DM信道中发送消息时,这引起了问题。我希望该漫游器完全忽略Dm频道,但我对此没有太多运气
代码:
@commands.Cog.listener()
async def on_message(self, message):
if message.guild.id == Guild ID HERE:
print(f"{message.author} said --- {message.clean_content} --- in #{message.channel.name}")
elif message.channel.type is discord.ChannelType.private:
pass
Ignoring exception in on_message
Traceback (most recent call last):
File "C:\Python38\lib\site-packages\discord\client.py", line 312, in _run_event
await coro(*args, **kwargs)
File "d:\Documents\Bots\DS BOT\cog\Listener.py", line 13, in on_message
if message.guild.id == Guild ID HERE:
AttributeError: 'NoneType' object has no attribute 'id'
Ignoring exception in on_message
Traceback (most recent call last):
File "C:\Python38\lib\site-packages\discord\client.py", line 312, in _run_event
await coro(*args, **kwargs)
File "d:\Documents\Bots\DS BOT\cog\Logger.py", line 12, in on_message
if message.guild.id == Guild ID HERE:
AttributeError: 'NoneType' object has no attribute 'id'
答案 0 :(得分:1)
你可以做
if not message.guild:
# message is from a server
else:
# message is from a dm.
就是这样。无需检查类型。
答案 1 :(得分:0)
在进行公会检查之前,您必须检查频道是否为私人频道,否则会引发错误。这应该可以完成工作:
collect
答案 2 :(得分:0)
我解决这个问题的方法很简单。当时,我建立了一个自定义前缀系统,该系统将为每台服务器提供bot自己的默认前缀,以后可以更改它。 Dm的问题在于它不是服务器,因此不在导致错误的前缀数据库中。
此问题通过以下方式解决:
def get_prefix(bot, message):
if (message.guild is None):
return '.'
else:
with open('prefixes.json', 'r') as f:
prefixes = json.load(f)
return prefixes[str(message.guild.id)]
如果收到的消息或命令不是从服务器发送的,它只会使用默认前缀
答案 3 :(得分:-1)
将此内容传递到您的if
语句中:
if message.channel.type is discord.ChannelType.private:
return
这应该对您有用!