Tengo mi código aquí:
// ... run: (client,message,args) =>{ let member = message.member console.log(member.presence) // null if(!member.presence) return message.say(`${n} - I cannot access **${member.nickname || member.user.tag}**'s presence.`) if(!member.presence.activities[0]) return message.reply(`${n} - No activity detected from \`${member.user.tag} !\``) message.reply('Informations logged on the console.') console.log(member.presence) } Sigo teniendo mi bot enviando esto:

Después de haber verificado si otras personas tenían el mismo problema, solo vi personas que no activaron las siguientes casillas de verificación:
La cuestión es que ya lo hice y no importa cuántas veces vuelva a ejecutar mi bot, member.presence sigue siendo nulo y no puedo entender por qué.
De acuerdo, estuve investigando un poco más y descubrí que es solo porque no puse GUILD_PRESENCES en mis intentos, tonto de mí.
Solo tuve que cambiar esto
const client = new Discord.Client({ intents : [ "GUILDS", "GUILD_MEMBERS", "GUILD_MESSAGES" ] })a esto :
const client = new Discord.Client({ intents : [ "GUILDS", "GUILD_MEMBERS", "GUILD_MESSAGES", "GUILD_PRESENCES" ] })¡Y reiniciar mi bot lo arregló todo!