did i fix
This commit is contained in:
parent
e4a5550885
commit
e02eace3ea
1 changed files with 8 additions and 5 deletions
|
@ -38,17 +38,20 @@ module.exports = class CustomResponseCommand extends Command {
|
||||||
let json = JSON.stringify(customresponse)
|
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){
|
fs.readFile(`DiscordBot/tag/${message.guild.id}.json`, 'utf8', function readFileCallback(err, data){
|
||||||
if (err){
|
if (err){
|
||||||
console.log(err);
|
console.log(err);
|
||||||
} else {
|
} else {
|
||||||
customresponse = JSON.parse(data); //now it an object
|
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
|
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