1
0
Fork 0

dosent throw a bunch of error

Commando
Loic Bersier 6 years ago
parent 005cd1c46d
commit 68cfa021bb

@ -75,7 +75,8 @@ client.registry
});
client.on("message", async (message) => {
var customresponse = new SelfReloadJSON(`./tag/${message.guild.id}.json`);
try {
var customresponse = new SelfReloadJSON(`./tag/${message.guild.id}.json`)
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
let message_content = message.content.toLowerCase();
@ -85,6 +86,7 @@ client.registry
if(customresponse[message_content])
message.channel.send(customresponse[message_content])
// If autoresponse is enable send the response
if(autoresponse[message.channel.id] == 'enable') {
// Reply with images as attachement
@ -105,8 +107,11 @@ client.registry
} else if (message_content.includes("jeff")) {
message.react("496028845967802378")
}
}}
} catch(err) {
console.error(err)
}
}});
})
// Very basic starboard
client.on('messageReactionAdd', async (reaction, message) => {

Loading…
Cancel
Save