In ON_MESSAGE
My bot has a check, that exludes other bots, system users, dmchannels, and "if not message.guild"
after that are the lines that cause problems:
if message.guild.owner.id == message.author.id:
return
so i did:
print(f"message.guild.owner: {message.guild.owner}\n"
f"message.author: {message.author}")
and got:
message.guild.owner: None
In my test-bot (using py-cord 2.3.2)
this worked.
with the real bot (using 2.4.1) it doesn't find the guild owner anymore.
What's my best course of action to resolve the issue?
