forked from Supositware/Haha-Yes
fixed an error i thjink
This commit is contained in:
parent
c6cd3a448d
commit
6089fe46f1
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -81,7 +81,6 @@ client.registry
|
|||
// Reply with images as attachement
|
||||
if(imgResponseObject[message_content]) {
|
||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
||||
var customresponse = new SelfReloadJSON('DiscordBot/json/customresponse.json');
|
||||
if(autoresponse[message.channel.id] == 'enable')
|
||||
message.channel.send({files: [imgResponseObject[message_content]]});
|
||||
}
|
||||
|
@ -94,6 +93,7 @@ client.registry
|
|||
// auto respond to messages
|
||||
else if(responseObject[message_content]) {
|
||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
||||
var customresponse = new SelfReloadJSON('DiscordBot/json/customresponse.json');
|
||||
if(autoresponse[message.channel.id] == 'enable')
|
||||
message.channel.send(responseObject[message_content]);
|
||||
message.channel.send(customresponse[message.guild.id]['response'])
|
||||
|
|
Loading…
Reference in a new issue