Open tedy0804 opened 1 year ago
I've read somewhere that you have to put intents=discord.Intents.default()
inside discord.Client()
. But when I did, the problem got deeper.
change line 17 to client = discord.Client(intents=None)
Firstly, in discord applications settings -> Bot -> Priviliged Gateway Intents enable MESSAGE CONTENT INTENT
Then change on line 17: intents = discord.Intents.default() intents.message_content = True client = discord.Client(intents=intents)
like wtf is going on