fixed tag

This commit is contained in:
Loic Bersier 2018-12-06 19:42:05 +01:00
parent e02eace3ea
commit 741fcd51a5

View file

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