This commit is contained in:
parent
a96bd9eb13
commit
b3aec869f2
1 changed files with 5 additions and 4 deletions
9
index.js
9
index.js
|
@ -80,6 +80,11 @@ client.registry
|
|||
|
||||
let message_content = message.content.toLowerCase();
|
||||
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[message.channel.id] == 'enable') {
|
||||
// Reply with images as attachement
|
||||
|
@ -101,10 +106,6 @@ client.registry
|
|||
message.react("496028845967802378")
|
||||
}
|
||||
}
|
||||
|
||||
// User autoresponse
|
||||
if(customresponse[message_content])
|
||||
message.channel.send(customresponse[message_content])
|
||||
}});
|
||||
|
||||
// Very basic starboard
|
||||
|
|
Loading…
Reference in a new issue