1
0
Fork 0

did i fix

Commando
Loic Bersier 6 years ago
parent e4a5550885
commit e02eace3ea

@ -38,17 +38,20 @@ module.exports = class CustomResponseCommand extends Command {
let json = JSON.stringify(customresponse)
fs.writeFile(`DiscordBot/tag/${message.guild.id}.json`, '{}', function (err) {
if (err){
console.log(err);
}
})
fs.readFile(`DiscordBot/tag/${message.guild.id}.json`, 'utf8', function readFileCallback(err, data){
if (err){
console.log(err);
} else {
customresponse = JSON.parse(data); //now it an object
if (customresponse == '{}') {
fs.writeFile(`DiscordBot/tag/${message.guild.id}.json`, '{}', function (err) {
if (err){
console.log(err);
}
})
}
customresponse [trigger] = response
json = JSON.stringify(customresponse); //convert it back to json
fs.writeFile(`DiscordBot/tag/${message.guild.id}.json`, json, 'utf8', function(err) {

Loading…
Cancel
Save