Some changes

This commit is contained in:
Hirzi
2022-06-19 14:37:27 +07:00
committed by GitHub
parent 6cb3cf1f44
commit 277251c15e
7 changed files with 41 additions and 30 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ const checkStatus = require('../handlers/checkStatus')
module.exports = {
name: 'ready',
once: true,
async execute(client) {
execute(client) {
console.log(chalk.cyan('[PteroStats]') + chalk.green(' Bot is up!'))
console.log(chalk.cyan('[PteroStats]') + chalk.green(' If you need support you can join our discord server https://discord.gg/zv6maQRah3'))
@@ -22,7 +22,7 @@ module.exports = {
checkStatus(client)
setInterval(async () => {
setInterval(() => {
checkStatus(client)
}, client.config.refresh * 1000)
}