1
0
Fork 0
Loic Bersier 6 years ago
parent a96bd9eb13
commit b3aec869f2

@ -80,6 +80,11 @@ client.registry
let message_content = message.content.toLowerCase(); let message_content = message.content.toLowerCase();
if (message.author.bot) return; { if (message.author.bot) return; {
// User autoresponse
if(customresponse[message_content])
message.channel.send(customresponse[message_content])
// If autoresponse is enable send the response // If autoresponse is enable send the response
if(autoresponse[message.channel.id] == 'enable') { if(autoresponse[message.channel.id] == 'enable') {
// Reply with images as attachement // Reply with images as attachement
@ -101,10 +106,6 @@ client.registry
message.react("496028845967802378") message.react("496028845967802378")
} }
} }
// User autoresponse
if(customresponse[message_content])
message.channel.send(customresponse[message_content])
}}); }});
// Very basic starboard // Very basic starboard

Loading…
Cancel
Save