forked from Supositware/Haha-Yes
fixed tag
This commit is contained in:
parent
e02eace3ea
commit
741fcd51a5
1 changed files with 3 additions and 6 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue