Я хочу, чтобы мой бот менял свое присутствие / активность с интервалом (15 секунд), но я не уверен, почему один из них не работает.
const botconfig = require("../botconfig.json")
module.exports = async client => {
console.log(`Logged in as ${client.user.tag}!`);
//client.user.setPresence({game: {name: `(${botconfig.prefix}) for Brain Central`}, type: "WATCHING"})
var interval = setInterval(function(){
client.user.setPresence({game: {name: `(${botconfig.prefix}) for Brain Central`}, type: "WATCHING"})
client.user.setPresence({game: {name: `DM to contact staff!`}, type: "PLAYING"})
}, 15 * 1000)
}