Skip to content

Commit

Permalink
Modif du vérif de majs
Browse files Browse the repository at this point in the history
Le modificateur de mises à jour il a changé.
  • Loading branch information
johan-perso committed Sep 7, 2022
1 parent ba8c11c commit a971a08
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,12 @@ function loadModules(){
console.log(chalk.red("[ERROR] ") + `Impossible de charger le module ${chalk.yellow(module)} : une commande slash avec le même nom existe déjà.`)
return process.exit()
}
client.commands.set(file.slashInfo.toJSON().name, { file: file, whitelistedGuildIds: manifest.whitelistedGuildIds })
var slashInfoJSON = file.slashInfo.toJSON()
slashInfoJSON.slashToText = file.slashToText
if(disableTextCommand != true) client.textCommands.set(editedfile.slashInfo.toJSON().name, { file: editedfile, whitelistedGuildIds: manifest.whitelistedGuildIds })
allSlashCommands.push(file.slashInfo.toJSON())
thisModuleAllCommands.push(file.slashInfo.toJSON())
client.commands.set(slashInfoJSON.name, { file: file, whitelistedGuildIds: manifest.whitelistedGuildIds })
allSlashCommands.push(slashInfoJSON)
thisModuleAllCommands.push(slashInfoJSON)
}

// Si il y a des menus contextuel
Expand Down Expand Up @@ -235,17 +237,14 @@ async function checkUpdates(){
// Mettre à jour la date de dernière vérification
await bacheroFunctions.database.set(statsDatabase, 'lastUpdateCheck', Date.now())

// Log
console.log(chalk.blue("[INFO] (MAJ) ") + `Début de la vérification des mises à jour...`)

// Obtenir les mises à jour
var latestPackageJson = await require('node-fetch')('https://raw.githubusercontent.com/bacherobot/bot/master/package.json').then(res => res.text())

// Tenter de parse en JSON
try {
latestPackageJson = JSON.parse(latestPackageJson)
} catch (e){
console.log(chalk.yellow("[WARN] (MAJ) ") + "Impossible d'obtenir le package.json de la dernière version :")
console.log(chalk.yellow("[WARN] (MAJ) ") + "Vérifications des mises à jours annulées, impossible d'obtenir le package.json de la dernière version :")
console.error(e)
latestPackageJson = {}
}
Expand Down

0 comments on commit a971a08

Please sign in to comment.