3.0 update first beta

This commit is contained in:
DJj123dj
2022-09-24 08:56:34 +02:00
parent 69de612d1e
commit ed9c98e2f0
45 changed files with 623 additions and 595 deletions
+1
View File
@@ -3,6 +3,7 @@
"disclaimer":"DISABLE doesn't work yet! Below this message!",
"enableAPIdebug":false,
"disable":{
"messages":{
"ticketCreated":false,
+9 -2
View File
@@ -4,7 +4,7 @@ const log = bot.errorLog.log
module.exports = () => {
const files = fs.readdirSync("./plugins")
const api = require("./api.json")
var totalcount = 0
var successcount = 0
var failcount = 0
@@ -15,7 +15,14 @@ module.exports = () => {
successcount++
totalcount++
}catch{
}catch(err){
/**@type {Error} */
const theError = err
if (api.enableAPIdebug){
const data = fs.readFileSync("./apiDebug.txt")
const newData = data ? data.toString() : ""
fs.writeFileSync("./apiDebug.txt",newData+"ERROR: "+theError.name+": "+theError.message+"\n"+theError.stack+"\n\n")
}
failcount++
totalcount++
}