Purpose: I'm trying to make my bot check for reactions from a specific message.
I've read this post: Get Message By ID: Discord.js But it didn't help at all.
I've searched the internet to see how can I use .fetchMessage
properly. But unfortunately didn't find any results.
This is my code:
client.channels.get('CHANNEL ID').fetchMessage('MESSAGE ID').then(async msg => { *CODE HERE* });
This is the error i get:
TypeError: client.channels.get is not a function
I do realise that client.channels.get is not a function
and I should use this in a function but I don't know how to.
Discord.js version: 12.0.2
Node.js verison: 12.13